Refactor tests for tmpdir

This commit is contained in:
Yusuke Kadowaki 2022-12-03 16:35:02 +09:00
parent d43620a8da
commit 5e6ce8f433
1 changed files with 1 additions and 18 deletions

View File

@ -100,7 +100,7 @@ class TestConfigTmpPath:
"""
)
p_failed = pytester.makepyfile(
"""
another_file_name="""
def test_1(tmp_path):
assert 0 == 1
"""
@ -186,23 +186,6 @@ class TestConfigTmpPath:
assert len(test_dir) == 1
assert test_dir[0].name == "test_20"
def test_policy_failed_removes_basedir_when_all_passed(
self, pytester: Pytester
) -> None:
p = pytester.makepyfile(
"""
def test_1(tmp_path):
assert 0 == 0
"""
)
pytester.inline_run(p)
root = pytester._test_tmproot
for child in root.iterdir():
base_dir = list(child.iterdir())
# Check the base dir itself is gone
assert base_dir == []
# issue #10502
def test_policy_failed_removes_dir_when_skipped_from_fixture(
self, pytester: Pytester