(self)
| 50 | self.assertEqual(result, "") |
| 51 | |
| 52 | def test_nonexistent_dir(self): |
| 53 | result = _git_cmd(["status"], "/nonexistent/dir/path") |
| 54 | self.assertEqual(result, "") |
| 55 | |
| 56 | |
| 57 | class TestGetIsGit(unittest.TestCase): |
nothing calls this directly
no test coverage detected