(self)
| 2758 | ), rruleset), True) |
| 2759 | |
| 2760 | def testStrCase(self): |
| 2761 | self.assertEqual(list(rrulestr( |
| 2762 | "dtstart:19970902T090000\n" |
| 2763 | "rrule:freq=yearly;count=3\n" |
| 2764 | )), |
| 2765 | [datetime(1997, 9, 2, 9, 0), |
| 2766 | datetime(1998, 9, 2, 9, 0), |
| 2767 | datetime(1999, 9, 2, 9, 0)]) |
| 2768 | |
| 2769 | def testStrSpaces(self): |
| 2770 | self.assertEqual(list(rrulestr( |
nothing calls this directly
no outgoing calls
no test coverage detected