Ensure correct exception is thrown if the path does not exist.
(vs_type: ty.Callable[..., VideoStream])
| 341 | |
| 342 | |
| 343 | def test_invalid_path(vs_type: ty.Callable[..., VideoStream]): |
| 344 | """Ensure correct exception is thrown if the path does not exist.""" |
| 345 | with pytest.raises(OSError): |
| 346 | _ = vs_type("this_path_should_not_exist.mp4") |
| 347 | |
| 348 | |
| 349 | def test_framerate_legacy_alias(vs_type: ty.Callable[..., VideoStream]): |
nothing calls this directly
no outgoing calls
no test coverage detected