(self, msg, *fps)
| 297 | os.path.relpath(TRACKED_DIR_DIR_FP_WITH_SPACE, DIR_DIR)) |
| 298 | |
| 299 | def __assert_untrack_error(self, msg, *fps): |
| 300 | root = self.repo.root |
| 301 | for fp in fps: |
| 302 | fp = os.path.relpath(fp, root) |
| 303 | self.assertRaisesRegexp(ValueError, msg, self.curr_b.untrack_file, fp) |
| 304 | |
| 305 | def __assert_untrack_untracked(self, *fps): |
| 306 | self.__assert_untrack_error('already untracked', *fps) |
no test coverage detected