Test loading an empty stats file, ensuring it results in no errors.
(tmp_path: Path)
| 90 | |
| 91 | |
| 92 | def test_load_empty_stats(tmp_path: Path): |
| 93 | """Test loading an empty stats file, ensuring it results in no errors.""" |
| 94 | path = tmp_path.joinpath("stats.csv") |
| 95 | with open(path, "w"): |
| 96 | pass |
| 97 | stats_manager = StatsManager() |
| 98 | stats_manager.load_from_csv(path) |
| 99 | |
| 100 | |
| 101 | def test_save_no_detect_scenes(tmp_path: Path): |
nothing calls this directly
no test coverage detected