(self)
| 762 | d.remove(rec=1) |
| 763 | |
| 764 | def test_tmproot(self): |
| 765 | d = local.mkdtemp() |
| 766 | tmproot = local.get_temproot() |
| 767 | try: |
| 768 | assert d.check(dir=1) |
| 769 | assert d.dirpath() == tmproot |
| 770 | finally: |
| 771 | d.remove(rec=1) |
| 772 | |
| 773 | def test_chdir(self, tmpdir): |
| 774 | old = local() |
nothing calls this directly
no test coverage detected