(self)
| 63 | self.assertEqual(result.year, 2024) |
| 64 | |
| 65 | def test_empty_raises(self): |
| 66 | with self.assertRaises(ValueError): |
| 67 | parse_filing_date(" ") |
| 68 | |
| 69 | def test_unrecognised_raises(self): |
| 70 | with self.assertRaises(ValueError): |
nothing calls this directly
no test coverage detected