()
| 43 | |
| 44 | |
| 45 | def test_invalid_path(): |
| 46 | |
| 47 | led_map = load_detections(Path("doesnt-exist-i-hope"), 0) |
| 48 | assert led_map is None, "led map successfully loaded from invalid file" |
| 49 | |
| 50 | |
| 51 | def test_get_all_maps(): |
nothing calls this directly
no test coverage detected