Unit Tests¶
Write unit tests for FlavorPack components.
Coming Soon¶
Complete unit testing guide under development.
Quick Start¶
# Run Python unit tests
pytest -m unit
# With coverage
pytest -m unit --cov
# Specific test
pytest tests/test_builder.py::test_basic_build
Topics to be Covered¶
- Writing unit tests
- Test fixtures
- Mocking dependencies
- Coverage requirements
- Best practices
See also: Testing Guide | Integration Tests