test:fixture

test:fixture is a command for coding agents from ruslan-korneev/claude-plugins. It costs 11 tokens per session (1,399 once invoked), scanned A, original, MIT.

A command that creates a pytest fixture, a reusable setup object for tests, such as a database session, test client, mock dependency, or sample data.

In plain words
What is it for?
Use it to create database, client, mock, or sample-data fixtures with function, class, module, or session scope.
Why use it?
It avoids repeating test setup in every test and helps keep shared setup in the right location. It supports different lifetimes, from one test to the whole test run.

Command

Part of the python plugin — 4 skills, 10 commands, 1 agent, 1 hook shipped together

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 commands/ruslan-korneev/claude-plugins/test-fixture
Clone the repo
git clone --depth 1 https://github.com/ruslan-korneev/claude-plugins

Or install python, the plugin that ships this one along with the rest of its 4 skills, 10 commands, 1 agent, 1 hook.

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:fixture

README.md
[![agentmods](https://agentmods.dev/badge/commands/ruslan-korneev/claude-plugins/test-fixture.svg)](https://agentmods.dev/commands/ruslan-korneev/claude-plugins/test-fixture)
Your own site
<a href="https://agentmods.dev/commands/ruslan-korneev/claude-plugins/test-fixture"><img src="https://agentmods.dev/badge/commands/ruslan-korneev/claude-plugins/test-fixture.svg" alt="Measured on agentmods" height="20"></a>
Per session 11 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 1,399 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.00011 $0.01399
Opus 5 $0.00005 $0.00700
Sonnet 5 $0.00002 $0.00280
Haiku 4.5 $0.00001 $0.00140

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

Security

Grade A, and why

test:fixture 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 4d 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.

plugins/python/commands/test-fixture.md · 273 lines

How it starts

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

Command /test:fixture

Create a pytest fixture for tests.

Instructions

Step 1: Determine fixture type

  • session — AsyncSession for database operations
  • client — AsyncClient for API testing
  • db — full test database setup
  • mock — mock for a dependency
  • sample — test data (sample user, sample order, etc.)

Step 2: Determine scope

  • function (default) — created for each test
  • class — created for each test class
  • module — created for each module
  • session — created once for the entire test session

Step 3: Determine location

  • Shared fixtures → tests/conftest.py
  • Module-specific fixtures → tests/modules/{module}/conftest.py
  • Local fixtures → in the test file itself

Fixture Templates

AsyncSession with rollback (recommended)

# tests/conftest.py
import pytest
from collections.abc import AsyncGenerator
from sqlalchemy.ext.asyncio import AsyncSession, create_async_engine, async_sessionmaker

from src.core.database import Base


@pytest.fixture(scope="session")
def engine():
    """Test engine — created once."""
    return create_async_engine(
        "postgresql+asyncpg://test:test@localhost:5432/test_db",
        echo=False,
    )


@pytest.fixture(scope="session")
async def setup_database(engine):
    """Create tables before tests."""
    async with engine.begin() as conn:
        await conn.run_sync(Base.metadata.create_all)
    yield
    async with engine.begin() as conn:
        await conn.run_sync(Base.metadata.drop_all)


@pytest.fixture
async def session(
    engine,
    setup_database,
) -> AsyncGenerator[AsyncSession, None]:
    """Session with automatic rollback after each test."""
    async with engine.connect() as connection:
        await connection.begin()
        session_maker = async_sessionmaker(
            bind=connection,
            expire_on_commit=False,
        )
        async with session_maker() as session:
            yield session
        await connection.rollback()

Read the full file on GitHub · 273 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. 4d ago First seen · 273 lines · 11 tokens per session scan A f01011cac4fe

Subscribe to this mod's changes

test:fixture is a command published in the GitHub repository ruslan-korneev/claude-plugins (4 stars, last pushed 6mo ago), licensed MIT. It adds 11 tokens to every session and 1,399 once invoked, about $0.0001 per session on Opus 5. 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-31.

Related

Other commands, from other repositories

octo-loop

Your first output line MUST be: 🐙 Octopus Loop Mode.

nyldn/claude-octopus · 16 tokens

cloudflare-workers:test-setup

Interactive Vitest setup wizard for Cloudflare Workers testing. Configures @cloudflare/vitest-pool-workers, mocks bindings, and creates example tests.

secondsky/claude-skills · 37 tokens

kill-mutants

Analyze surviving mutants from a mutation testing run and write targeted unit tests to kill them. Re-runs mutations to confirm kills.

swingerman/engineer · 29 tokens

sync

Sync the audit manifest with Azure DevOps work items — set the connector up for the first time (connect: verify the transport, report which auth path is in effect, prove access read-only, detect the board's process), push manifest bugs/tasks/phases to ADO (board states, sprint stamp, Remaining Work, comments), pull…

AleksandarBisevac/claude-plugins · 100 tokens

init

Multi-agent codebase audit that GENERATES the audit manifest (phases/tasks) at manifestPath. Interviews you for scope/goals, fans out parallel read-only explorers, synthesizes findings, then presents the proposed phases for approval BEFORE writing — approve to materialize, or park them as proposals for later…

AleksandarBisevac/claude-plugins · 92 tokens

task

Add a tracked task to the audit manifest — every answer is a flag, and the dialogue only covers what the caller did not pass — move one between phases, or cancel work that will not be done. add allocates the id, initializes all orchestrator fields, updates fileIndex, and revalidates; move renumbers a task into another…

AleksandarBisevac/claude-plugins · 149 tokens