(self, completion_file, program, command, expected)
| 38 | class BashCompletionTest(unittest.TestCase): |
| 39 | |
| 40 | def run_complete(self, completion_file, program, command, expected): |
| 41 | stdout,stderr = Completion().run(completion_file, program, command) |
| 42 | self.assertEqual(stdout.decode("utf-8"), expected + '\n') |
| 43 | |
| 44 | class GohanClientTestCases(BashCompletionTest): |
| 45 | def test_1(self): |
no test coverage detected