(self)
| 805 | self.assertEqual(options, self.default_options) |
| 806 | |
| 807 | def testEncodingOption(self): |
| 808 | options, logging_level = parse_options(['-e', 'utf-8']) |
| 809 | self.default_options['encoding'] = 'utf-8' |
| 810 | self.assertEqual(options, self.default_options) |
| 811 | |
| 812 | def testOutputFormatOption(self): |
| 813 | options, logging_level = parse_options(['-o', 'html']) |
nothing calls this directly
no test coverage detected