(self)
| 789 | self.assertEqual(logging_level, DEBUG) |
| 790 | |
| 791 | def testInputFileOption(self): |
| 792 | options, logging_level = parse_options(['foo.txt']) |
| 793 | self.default_options['input'] = 'foo.txt' |
| 794 | self.assertEqual(options, self.default_options) |
| 795 | |
| 796 | def testOutputFileOption(self): |
| 797 | options, logging_level = parse_options(['-f', 'foo.html']) |
nothing calls this directly
no test coverage detected