test-patterns

Installation
SKILL.md

Test Patterns

A technology-agnostic skill for writing test code following established patterns.

Test Structure

Arrange-Act-Assert (AAA)

pattern:
  arrange: "Set up test data and preconditions"
  act: "Execute the code under test"
  assert: "Verify the expected outcome"

rules:
  - "Each test has exactly one Act step"
  - "Assert only what the test name promises"
  - "Arrange should use fixtures or factories, not inline data"
Related skills

More from masanao-ohba/claude-manifests

Installs
1
GitHub Stars
2
First Seen
Apr 15, 2026