(self)
| 1203 | self.assertIn(conv('December\n\nMo Tu We'), output) |
| 1204 | |
| 1205 | def test_option_spacing(self): |
| 1206 | self.assertFailure('-s') |
| 1207 | self.assertFailure('--spacing') |
| 1208 | self.assertFailure('-s', 'spam') |
| 1209 | for run in self.runners: |
| 1210 | output = run('--spacing', '8', '2004') |
| 1211 | self.assertIn(b'Su Mo', output) |
| 1212 | |
| 1213 | def test_option_months(self): |
| 1214 | self.assertFailure('-m') |
nothing calls this directly
no test coverage detected