(self, path)
| 805 | |
| 806 | class CommandLineTests(unittest.TestCase): |
| 807 | def exists(self, path): |
| 808 | if path is not None and os.path.isdir(path): |
| 809 | return "exists" |
| 810 | else: |
| 811 | return "doesn't exist" |
| 812 | |
| 813 | def get_excepted_output(self, *args): |
| 814 | if len(args) == 0: |
no test coverage detected