(self)
| 34 | |
| 35 | class CmdLineTest(unittest.TestCase): |
| 36 | def test_directories(self): |
| 37 | assert_python_failure('.') |
| 38 | assert_python_failure('< .') |
| 39 | |
| 40 | def verify_valid_flag(self, cmd_line): |
| 41 | rc, out, err = assert_python_ok(cmd_line) |
nothing calls this directly
no test coverage detected