test-property-based
Installation
SKILL.md
Property-Based Testing with Hypothesis
Quick Start
Property-based testing automatically generates hundreds of test cases to validate invariants:
from hypothesis import given, strategies as st
# Instead of writing many example tests...
# def test_sort_1(): assert sorted([3,1,2]) == [1,2,3]
# def test_sort_2(): assert sorted([]) == []
# ... (20 more examples)
Related skills