(self)
| 4854 | |
| 4855 | class WeekdayTest(unittest.TestCase): |
| 4856 | def testInvalidNthWeekday(self): |
| 4857 | with self.assertRaises(ValueError): |
| 4858 | FR(0) |
| 4859 | |
| 4860 | def testWeekdayCallable(self): |
| 4861 | # Calling a weekday instance generates a new weekday instance with the |
nothing calls this directly
no outgoing calls
no test coverage detected