(*cmds)
| 56 | |
| 57 | def test_not_in_repo(self): |
| 58 | def assert_not_in_repo(*cmds): |
| 59 | for cmd in cmds: |
| 60 | self.assertRaisesRegexp( |
| 61 | ErrorReturnCode, 'not in a Gitless\'s repository', cmd) |
| 62 | |
| 63 | assert_not_in_repo( |
| 64 | gl.status, gl.diff, gl.commit, gl.branch, gl.merge, gl.fuse, gl.remote, |
nothing calls this directly
no test coverage detected