Ensure setting an invalid backend returns an error.
()
| 794 | |
| 795 | |
| 796 | def test_cli_backend_unsupported(): |
| 797 | """Ensure setting an invalid backend returns an error.""" |
| 798 | assert ( |
| 799 | invoke_scenedetect("-i {VIDEO} -b {BACKEND} {DETECTOR}", BACKEND="unknown_backend_type") |
| 800 | != 0 |
| 801 | ) |
| 802 | |
| 803 | |
| 804 | def test_cli_load_scenes_options(): |
nothing calls this directly
no test coverage detected