(self)
| 756 | """ Test parsing of Command Line Interface Options. """ |
| 757 | |
| 758 | def setUp(self): |
| 759 | self.default_options = { |
| 760 | 'input': None, |
| 761 | 'output': None, |
| 762 | 'encoding': None, |
| 763 | 'output_format': 'xhtml', |
| 764 | 'lazy_ol': True, |
| 765 | 'extensions': [], |
| 766 | 'extension_configs': {}, |
| 767 | } |
| 768 | self.tempfile = '' |
| 769 | |
| 770 | def tearDown(self): |
| 771 | if os.path.isfile(self.tempfile): |
nothing calls this directly
no outgoing calls
no test coverage detected