Intro to TDD
Test-driven development (TDD) follows a simple loop:
- Red: write a failing test for the behaviour you want.
- Green: write the minimal Python code to pass the test.
- Refactor: improve design while keeping tests green.
Continue with Intro to Acceptance Tests and Working with Pytest.