Tests that ProgressPrinter raises when provided with a negative display_interval argument.
()
| 11 | |
| 12 | |
| 13 | def test_raises_negative_display_interval(): |
| 14 | """ |
| 15 | Tests that ProgressPrinter raises when provided with a negative |
| 16 | display_interval argument. |
| 17 | """ |
| 18 | with assert_raises(ValueError): |
| 19 | ProgressPrinter(True, -1.0) |
| 20 | |
| 21 | |
| 22 | def test_start(ok_small, caplog): |
nothing calls this directly
no test coverage detected