go-testing-practices

A set of guidelines for writing clear, maintainable tests in Go, the programming language. It covers test structure, naming, test cases, failure messages, and dependency substitutes.

In plain words
What is it for?
Use it when adding or reviewing Go tests, especially tests with many input scenarios or external dependencies.
Why use it?
It helps prevent inconsistent tests and makes failures easier to understand and fix.

Cursor rule for Cursor

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.

agentmods
npx agentmods add rules/dstotijn/go-mcp/go-testing-practices
Clone the repo
git clone --depth 1 https://github.com/dstotijn/go-mcp

Made for: Cursor.

Per session 0 Nothing until a file matches its globs; then the whole rule loads.
When invoked 876 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
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 $0.00000 $0.00876
Opus 5 $0.00000 $0.00438
Sonnet 5 $0.00000 $0.00175
Haiku 4.5 $0.00000 $0.00088

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

Security

Grade A, and why

go-testing-practices 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

2 near-identical copies found in the catalogue:

.cursor/rules/go-testing-practices.mdc · 132 lines

How it starts

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

Description

This rule ensures that Go tests follow best practices for effective, maintainable, and idiomatic testing in Go projects.

Rule

When writing tests in Go:

Test Organization

  1. Use table-driven tests for testing multiple scenarios
  2. Name test functions as Test<FunctionName> or Test<FunctionName>_<Scenario>
  3. Use subtests with t.Run() to organize related test cases
  4. Group tests logically by functionality
  5. Keep test files in the same package as the code they test

Test Structure

  1. Follow the Arrange-Act-Assert (AAA) pattern:
    • Arrange: Set up test data and preconditions
    • Act: Call the function/method being tested
    • Assert: Verify the results
  2. Use clear separation between these sections
  3. Minimize test setup code; use helper functions for common setup
  4. Make test failures descriptive and actionable

Assertions

  1. Use t.Errorf() or t.Fatalf() with descriptive messages
  2. Include expected vs. actual values in failure messages
  3. Avoid testify or similar packages, but do use go-cmp.
  4. Prefer t.Fatalf() only when continuing the test is impossible

Mocking and Test Doubles

  1. Use interfaces to enable mocking of dependencies
  2. Create simple, focused test doubles (mocks, stubs, fakes)
  3. Consider using the standard library's httptest for HTTP testing
  4. Avoid sqlmock or similar tools for database testing, stick to the stdlib

Test Coverage

  1. High test coverage is not a goal in and of itself, focus on critical code paths
  2. Test edge cases and error conditions
  3. Use go test -cover to measure coverage
  4. Use go test -race to detect race conditions

Implementation

  • The Cursor IDE will enforce this rule by:
    • Suggesting test improvements
    • Highlighting testing anti-patterns
    • Providing templates for common testing patterns

Benefits

  • More reliable and maintainable tests
  • Better test coverage
  • Faster test execution
  • Clearer test failures
  • Consistent testing approach across the project

Read the full file on GitHub · 132 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 · 132 lines · 876 tokens per session scan A c925ef0ab63e

Subscribe to this mod's changes

go-testing-practices is a cursor rule published in the GitHub repository dstotijn/go-mcp (18 stars, last pushed 1y ago), licensed Apache-2.0. It costs nothing until one of its globs matches a file; then it loads 876 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.