(self, path)
| 564 | return True |
| 565 | |
| 566 | def abs_root_path(self, path): |
| 567 | key = path |
| 568 | if key in self.abs_root_path_cache: |
| 569 | return self.abs_root_path_cache[key] |
| 570 | |
| 571 | res = Path(self.root) / path |
| 572 | res = utils.safe_abs_path(res) |
| 573 | self.abs_root_path_cache[key] = res |
| 574 | return res |
| 575 | |
| 576 | fences = all_fences |
| 577 | fence = fences[0] |
no outgoing calls
no test coverage detected