Test saving without calling detect_scenes.
(tmp_path: Path)
| 99 | |
| 100 | |
| 101 | def test_save_no_detect_scenes(tmp_path: Path): |
| 102 | """Test saving without calling detect_scenes.""" |
| 103 | path = tmp_path.joinpath("stats.csv") |
| 104 | stats_manager = StatsManager() |
| 105 | stats_manager.save_to_csv(path) |
| 106 | |
| 107 | |
| 108 | def test_load_hardcoded_file(tmp_path: Path): |
nothing calls this directly
no test coverage detected