(self)
| 458 | KeyError, self.curr_b.status_file, NONEXISTENT_FP_WITH_SPACE) |
| 459 | |
| 460 | def test_status_modify(self): |
| 461 | utils_lib.write_file(TRACKED_FP, contents='contents') |
| 462 | st = self.curr_b.status_file(TRACKED_FP) |
| 463 | self.assertTrue(st.modified) |
| 464 | utils_lib.write_file(TRACKED_FP, contents=TRACKED_FP_CONTENTS_2) |
| 465 | st = self.curr_b.status_file(TRACKED_FP) |
| 466 | self.assertFalse(st.modified) |
| 467 | |
| 468 | def test_status_rm(self): |
| 469 | os.remove(TRACKED_FP) |
nothing calls this directly
no test coverage detected