(self)
| 501 | self.assertTrue(st.modified) |
| 502 | |
| 503 | def test_status_unignore(self): |
| 504 | utils_lib.write_file('.gitignore', contents='') |
| 505 | st = self.curr_b.status_file(IGNORED_FP) |
| 506 | self.assertEqual(core.GL_STATUS_UNTRACKED, st.type) |
| 507 | |
| 508 | st = self.curr_b.status_file(IGNORED_FP_WITH_SPACE) |
| 509 | self.assertEqual(core.GL_STATUS_UNTRACKED, st.type) |
| 510 | |
| 511 | def test_status_ignore(self): |
| 512 | contents = utils_lib.read_file('.gitignore') + '\n' + TRACKED_FP |
nothing calls this directly
no test coverage detected