(self)
| 794 | self.assertEqual(options, self.default_options) |
| 795 | |
| 796 | def testOutputFileOption(self): |
| 797 | options, logging_level = parse_options(['-f', 'foo.html']) |
| 798 | self.default_options['output'] = 'foo.html' |
| 799 | self.assertEqual(options, self.default_options) |
| 800 | |
| 801 | def testInputAndOutputFileOptions(self): |
| 802 | options, logging_level = parse_options(['-f', 'foo.html', 'foo.txt']) |
nothing calls this directly
no test coverage detected