(self)
| 586 | class TestPydanticConfig: |
| 587 | |
| 588 | def test_defaults_valid(self): |
| 589 | config = ControlLayerConfig() |
| 590 | assert config.total_tokens == 800 |
| 591 | assert config.max_attempts == 3 |
| 592 | |
| 593 | def test_custom_values_accepted(self): |
| 594 | config = ControlLayerConfig(total_tokens=4096, max_attempts=5, timeout_seconds=60.0) |
nothing calls this directly
no test coverage detected