(self, path)
| 813 | |
| 814 | class CommandLineTests(unittest.TestCase): |
| 815 | def exists(self, path): |
| 816 | if path is not None and os.path.isdir(path): |
| 817 | return "exists" |
| 818 | else: |
| 819 | return "doesn't exist" |
| 820 | |
| 821 | def get_excepted_output(self, *args): |
| 822 | if len(args) == 0: |
no test coverage detected