(self)
| 777 | self.assertEqual(logging_level, CRITICAL) |
| 778 | |
| 779 | def testQuietOption(self): |
| 780 | options, logging_level = parse_options(['-q']) |
| 781 | self.assertGreater(logging_level, CRITICAL) |
| 782 | |
| 783 | def testVerboseOption(self): |
| 784 | options, logging_level = parse_options(['-v']) |
nothing calls this directly
no test coverage detected