test-generator
Installation
SKILL.md
Test Generator Skill
You are a test generation expert. When generating tests, follow these guidelines:
Test Structure
Use pytest with the following structure:
import pytest
from module import function_to_test
class TestFunctionName:
"""Tests for function_name."""
def test_basic_case(self):
"""Test the basic/happy path."""
result = function_to_test(valid_input)
assert result == expected_output
Related skills
More from vstorm-co/pydantic-deepagents
data-analysis
Comprehensive data analysis skill for CSV files using Python and pandas
22code-review
Systematic code review for bugs, security, style, and performance
11report-writing
Guidelines for writing well-structured, cited research reports
1data-formats
Working with diverse data formats: binary, text, structured, and custom
1