Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx agentmods add rules/desko77/cursor-1c-skills/testing-patternsgit clone --depth 1 https://github.com/Desko77/cursor-1c-skillsWhat it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5 | $0.00000 | $0.00885 |
| Opus 5 | $0.00000 | $0.00443 |
| Sonnet 5 | $0.00000 | $0.00177 |
| Haiku 4.5 | $0.00000 | $0.00089 |
Grade A, and why
testing-patterns scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 2d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 116 lines — stays where its author put it; the contents beside it link to each section on GitHub.
1C Testing Patterns
Шаблоны и подходы к тестированию кода 1С.
Применяется: при написании тестов для кода 1С.
YaXUnit - юнит-тесты
Шаблон теста
Процедура Тест<ИмяФункции>_<Сценарий>() Экспорт
// Arrange
<подготовка данных>
// Act
Результат = <вызов тестируемой функции>;
// Assert
ЮТест.ОжидаетЧто(Результат).<проверка>;
КонецПроцедуры
Пример
Процедура ТестПолучениеДанныхКлиента_СуществующийКлиент() Экспорт
// Arrange
Клиент = Справочники.Клиенты.СоздатьЭлемент();
Клиент.Наименование = "Тест";
Клиент.Записать();
// Act
Данные = ПолучитьДанныеКлиента(Клиент.Ссылка);
// Assert
ЮТест.ОжидаетЧто(Данные).Свойство("Наименование").Равно("Тест");
КонецПроцедуры
Именование тестов
Тест<Функция>_<Сценарий>- основной формат- Сценарии:
СуществующийОбъект,НесуществующийОбъект,НеверныйПараметр,ПустоеЗначение,ГраничноеУсловие
Vanessa Automation - BDD-тесты
Шаблон сценария
Функционал: <Название функциональности>
Сценарий: <Описание сценария>
Дано <начальное состояние>
Когда <действие пользователя>
Тогда <ожидаемый результат>
Пример
Функционал: Создание заказа клиента
Сценарий: Создание нового заказа
Дано Я авторизован как "Менеджер"
И Существует клиент "ООО Тест"
Когда Я открываю форму создания документа "ЗаказКлиента"
И Я выбираю клиента "ООО Тест"
И Я добавляю товар "Товар1" с количеством "10"
И Я нажимаю "Провести"
Тогда Документ "ЗаказКлиента" проведен
И Остатки товара "Товар1" уменьшились на "10"
Типы тест-кейсов
Для каждой тестируемой функции генерировать:
- Happy path - нормальный сценарий, корректные данные
- Edge cases - граничные условия (пустая строка, 0, максимальное значение)
- Error cases - невалидные данные, несуществующие ссылки
- Boundary conditions - NULL, Неопределено, пустые коллекции
Цели покрытия
| Область | Цель |
|---|---|
| Экспортные функции (public API) | 100% |
| Бизнес-логика (расчеты, валидация) | 90% |
| Утилитарные функции | 80% |
| Обработчики UI | 70% |
| Общее покрытие | 80% |
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 2d ago First seen · 116 lines · 0 tokens per session scan A 42098ac46f27
testing-patterns is a cursor rule published in the GitHub repository Desko77/cursor-1c-skills (53 stars, last pushed 4d ago), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 885 tokens. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.
Other cursor rules, from other repositories
122-java-integration-testing
Java Integration testing guidelines.
133-java-data-oriented-programming
Java rules to apply data oriented programming style.
112-java-type-design
Type Design Thinking in Java.
114-java-secure-coding
Java Secure coding guidelines.
phased-implementation
Cursor rule "phased-implementation" from alkoleft/platform-context-exporter, covering phased implementation for level 4 tasks, 🔍 phased implementation overview, 📋 implementation phasing principles, 📋 standard implementation phases and phase 1: foundation phase.
workflow-level4
Cursor rule "workflow-level4" from alkoleft/platform-context-exporter, covering comprehensive workflow for level 4 tasks, 🔍 level 4 workflow overview, 🔄 level transition handling, 📋 workflow phases and phase 1: initialization.