(self)
| 28 | |
| 29 | class CmdLineTest(unittest.TestCase): |
| 30 | def test_directories(self): |
| 31 | assert_python_failure('.') |
| 32 | assert_python_failure('< .') |
| 33 | |
| 34 | def verify_valid_flag(self, cmd_line): |
| 35 | rc, out, err = assert_python_ok(cmd_line) |
nothing calls this directly
no test coverage detected