26
26
27
27
def test_maybe_make ():
28
28
with TemporaryDirectory () as tmpdir :
29
-
30
29
test_dir = pathlib .Path (tmpdir ) / "maybe_make"
31
30
32
31
assert test_dir .exists () is False
@@ -55,7 +54,6 @@ def test_maybe_make():
55
54
56
55
def test_maybe_make_pathplus ():
57
56
with TemporaryDirectory () as tmpdir :
58
-
59
57
test_dir = PathPlus (tmpdir ) / "maybe_make"
60
58
61
59
assert test_dir .exists () is False
@@ -84,7 +82,6 @@ def test_maybe_make_pathplus():
84
82
85
83
def test_maybe_make_string ():
86
84
with TemporaryDirectory () as tmpdir :
87
-
88
85
test_dir = pathlib .Path (tmpdir ) / "maybe_make"
89
86
90
87
assert test_dir .exists () is False
@@ -113,7 +110,6 @@ def test_maybe_make_string():
113
110
114
111
def test_maybe_make_parents ():
115
112
with TemporaryDirectory () as tmpdir :
116
-
117
113
test_dir = pathlib .Path (tmpdir ) / "maybe_make" / "child1" / "child2"
118
114
119
115
assert test_dir .exists () is False
@@ -131,7 +127,6 @@ def test_maybe_make_parents():
131
127
132
128
def test_maybe_make_parents_pathplus ():
133
129
with TemporaryDirectory () as tmpdir :
134
-
135
130
test_dir = PathPlus (tmpdir ) / "maybe_make" / "child1" / "child2"
136
131
137
132
assert test_dir .exists () is False
0 commit comments