(self)
| 11 | |
| 12 | class TestGlobalOptionsDocumenter(unittest.TestCase): |
| 13 | def setUp(self): |
| 14 | self.driver = create_clidriver() |
| 15 | self.help_command = self.driver.create_help_command() |
| 16 | self.globals = GlobalOptionsDocumenter(self.help_command) |
| 17 | |
| 18 | def test_doc_global_options_match_saved_content(self): |
| 19 | with open(GLOBAL_OPTIONS_FILE) as f: |
nothing calls this directly
no test coverage detected