(self, completion_file, program, command, expected)
| 35 | |
| 36 | class BashCompletionTest(unittest.TestCase): |
| 37 | def run_complete(self, completion_file, program, command, expected): |
| 38 | stdout,stderr = Completion().run(completion_file, program, command) |
| 39 | self.assertEqual(stdout.decode("utf-8"), expected + '\n') |
| 40 | |
| 41 | class GohanTestCases(BashCompletionTest): |
| 42 | def test_orig(self): |
nothing calls this directly
no test coverage detected