(self)
| 481 | self.assertTrue(st.exists_in_wd) |
| 482 | |
| 483 | def test_status_track_rm(self): |
| 484 | self.curr_b.track_file(UNTRACKED_FP) |
| 485 | st = self.curr_b.status_file(UNTRACKED_FP) |
| 486 | self.assertEqual(core.GL_STATUS_TRACKED, st.type) |
| 487 | self.assertTrue(st.modified) |
| 488 | |
| 489 | os.remove(UNTRACKED_FP) |
| 490 | self.assertRaises(KeyError, self.curr_b.status_file, UNTRACKED_FP) |
| 491 | |
| 492 | def test_status_track_untrack(self): |
| 493 | self.curr_b.track_file(UNTRACKED_FP) |
nothing calls this directly
no test coverage detected