(self)
| 1211 | self.assertIn(b'Su Mo', output) |
| 1212 | |
| 1213 | def test_option_months(self): |
| 1214 | self.assertFailure('-m') |
| 1215 | self.assertFailure('--month') |
| 1216 | self.assertFailure('-m', 'spam') |
| 1217 | for run in self.runners: |
| 1218 | output = run('--months', '1', '2004') |
| 1219 | self.assertIn(conv('\nMo Tu We Th Fr Sa Su\n'), output) |
| 1220 | |
| 1221 | def test_option_type(self): |
| 1222 | self.assertFailure('-t') |
nothing calls this directly
no test coverage detected