(time_string: str)
| 271 | |
| 272 | @pytest.mark.parametrize('time_string', ['1.1iter', '1.5ep', '2.1ba', '3.2sp', '3.4tok', '0.1sec']) |
| 273 | def test_timestep_bad_strings(time_string: str): |
| 274 | with pytest.raises(TypeError): |
| 275 | Time.from_timestring(time_string) |
| 276 | |
| 277 | |
| 278 | @pytest.mark.parametrize('time_string', ['0.5dur', '1.0iter', '2.0ep', '3.000ba', '030.0sp', '30sec']) |
nothing calls this directly
no test coverage detected