test-data-gen

Solid

Use when tests need realistic fixtures or mock data and you want to generate them deterministically instead of copying production data.

AI & Automation 1 stars 0 forks Updated 4 days ago MIT

Install

View on GitHub

Quality Score: 78/100

Stars 20%
10
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
37
Issue Health 10%
80
License 10%
100
Description 5%
100

Skill Content

# Test Data Gen ## When to use Invoke this skill when a test needs sample rows, JSON, or objects that match a schema but must stay deterministic and privacy-safe. ## Steps 1. Identify the target schema or model and its required/optional fields. 2. Choose a generation strategy: fakes, factories, or seeded randomization. 3. Keep it deterministic (fixed seed) so tests are reproducible. 4. Never embed real PII; use obviously synthetic values. 5. Emit a small reusable builder the test suite can call. ## Examples - "Generate 50 fake user records for the test suite" - "Create fixtures matching the Order schema" ## References Prefer a factory over large literal blobs; assert on shape, not on exact generated values that may change between runs.

Details

Author
NSBen
Repository
NSBen/skillfoundry
Created
4 days ago
Last Updated
4 days ago
Language
Python
License
MIT

Similar Skills

Semantically similar based on skill content — not just same category