test-file-organization

test-file-organization is a cursor rule for Cursor from prisma/orm. It costs 0 tokens per session (1,006 once invoked), scanned A, original, Apache-2.0.

A rule for organizing test files by feature or concern and keeping each file below a stated size limit.

In plain words
What is it for?
Use it when separating basic cases, errors, structure, generation, joins, projections, integration tests, or other distinct test areas.
Why use it?
It keeps large test suites easier to read, navigate, and maintain while avoiding arbitrary file splits.

Cursor rule for Cursor ✓ vendor

Written for Cursor: a Cursor rule (.mdc). Also seen: installed under .agents/ (shared by several agents).

Good fit Use it when separating basic cases, errors, structure, generation, joins, projections, integration tests, or other distinct test areas.

Compare 6 cursor rules from other repositories ↓
Install with agentmods
npx agentmods add rules/prisma/orm/test-file-organization
About the project

Prisma ORM is a Node.js and TypeScript database toolkit that lets applications work with databases through a programming interface instead of writing every query directly in SQL. Developers use it with databases including PostgreSQL, MySQL, MariaDB, SQL Server, SQLite, MongoDB, and CockroachDB. The catalogue add-ons provide agent rules, skills, hooks, agents, and other workflows for using Prisma.

prisma/orm · 47,608 stars · on GitHub · prisma.io

Install

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.

Clone the repo
git clone --depth 1 https://github.com/prisma/orm

Made for: Cursor.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for test-file-organization

README.md
[![agentmods](https://agentmods.dev/badge/rules/prisma/orm/test-file-organization.svg)](https://agentmods.dev/rules/prisma/orm/test-file-organization)
Your own site
<a href="https://agentmods.dev/rules/prisma/orm/test-file-organization"><img src="https://agentmods.dev/badge/rules/prisma/orm/test-file-organization.svg" alt="Measured on agentmods" height="20"></a>
Per session 0 Nothing until a file matches its globs; then the whole rule loads.
When invoked 1,006 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What 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.

ModelPer sessionOnce invoked
Fable 5.1 $0.00000 $0.01006
Opus 5 $0.00000 $0.00503
Sonnet 5 $0.00000 $0.00201
Haiku 4.5 $0.00000 $0.00101

Measured 3d ago against content hash f0e1161109d1, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-07, from the pricing page.

Security

Grade A, and why

test-file-organization 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 3d 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.

Origin

Copies of this mod

1 near-identical copy found in the catalogue:

.agents/rules/test-file-organization.mdc · 97 lines

How it starts

The opening of the file, as written. The whole thing — 97 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Test File Organization

File Size Limit

Maximum file size: 500 lines. Keep test files under 500 lines for readability and navigability; split when a file exceeds it.

Splitting Strategy

When to split: the file exceeds 500 lines, contains multiple distinct concerns that separate logically, or has multiple top-level describe blocks splittable by functionality.

How to split:

  • Identify logical groupings — by functionality (basic, errors, structure, generation), feature area (joins, projections, includes), or test type (unit, integration, edge-cases). Integration tests that depend on multiple packages belong in integration-tests to avoid cyclic dependencies (e.g. tests using both sql-contract-ts and sql-query).
  • Use descriptive names — suffix by category (.basic.test.ts, .errors.test.ts, .structure.test.ts), prefix by feature area (runtime.joins.test.ts), keep the base name consistent (codecs.registry.test.ts, codecs.encoding.test.ts).
  • Split at natural boundaries — by describe block (distinct concerns), test category (basic vs advanced, success vs error), or feature area. Never split arbitrarily by line count (codecs.part1.test.ts, part2…) — that makes related tests hard to find.
  • Ensure each file is complete — all necessary imports and setup/teardown, independently runnable.
// ✅ Split by functionality
// codecs.registry.test.ts
describe('codec registry', () => { it('registers codec', () => {}); it('gets codec by id', () => {}); });
// codecs.encoding.test.ts
describe('codec encoding', () => { it('encodes string value', () => {}); it('handles null values', () => {}); });

// ✅ Split by feature area
// runtime.joins.test.ts
describe('runtime joins', () => { it('executes inner join', () => {}); it('executes left join', () => {}); });
// runtime.projections.test.ts
describe('runtime projections', () => { it('executes nested projection', () => {}); });

Read the full file on GitHub · 97 lines

Changes

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.

  1. 3d ago First seen · 97 lines · 0 tokens per session scan A f0e1161109d1

Subscribe to this mod's changes

test-file-organization is a cursor rule published in the GitHub repository prisma/orm (47,608 stars, last pushed 4d ago), licensed Apache-2.0. It costs nothing until one of its globs matches a file; then it loads 1,006 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-09-03.