Skip to content

Commit 780a993

Browse files
committed
os: Rename direcorty functions test.
1 parent a55dc7e commit 780a993

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

os/test_dirs.py

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,14 @@
11
import os
22

3+
print(os.getcwd())
4+
35
l = os.listdir()
46
print(l)
5-
assert "test_listdir.py" in l
7+
assert "test_dirs.py" in l
68
assert "os" in l
9+
10+
for t in os.walk("."):
11+
print(t)
12+
13+
for t in os.walk(".", False):
14+
print(t)

0 commit comments

Comments
 (0)