Agentic_programming-course testing

Testing conventions and patterns. Use when writing or modifying tests, creating mocks, or using object mothers.

install
source · Clone the upstream repo
git clone https://github.com/CodelyTV/agentic_programming-course
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/CodelyTV/agentic_programming-course "$T" && mkdir -p ~/.claude/skills && cp -r "$T/06-evolution/2-mcp_skills_subagents_documentation/2-skills/.agents/skills/testing" ~/.claude/skills/codelytv-agentic-programming-course-testing && rm -rf "$T"
manifest: 06-evolution/2-mcp_skills_subagents_documentation/2-skills/.agents/skills/testing/SKILL.md
source content

Read and follow the testing conventions documented in the resources before writing or modifying tests.

Resources

  • mock-objects.md
    — Mock objects conventions
  • object-mothers.md
    — Object mother pattern conventions