(self, *fps, **kwargs)
| 405 | os.path.relpath(TRACKED_DIR_DIR_FP_WITH_SPACE, DIR_DIR)) |
| 406 | |
| 407 | def __assert_checkout_error(self, *fps, **kwargs): |
| 408 | root = self.repo.root |
| 409 | cp = kwargs.get('cp', 'HEAD') |
| 410 | for fp in fps: |
| 411 | self.assertRaises( |
| 412 | KeyError, self.curr_b.checkout_file, os.path.relpath(fp, root), |
| 413 | self.repo.revparse_single(cp)) |
| 414 | |
| 415 | @assert_no_side_effects( |
| 416 | UNTRACKED_FP, UNTRACKED_FP_WITH_SPACE, |
no test coverage detected