Test initialization with default parameters.
(self)
| 50 | """Tests for BaseAPI initialization.""" |
| 51 | |
| 52 | def test_init_with_defaults(self): |
| 53 | """Test initialization with default parameters.""" |
| 54 | api = ConcreteAPI() |
| 55 | assert api.retry == 10 |
| 56 | assert api.wait == 5 |
| 57 | |
| 58 | def test_init_with_custom_params(self): |
| 59 | """Test initialization with custom parameters.""" |
nothing calls this directly
no test coverage detected