Skip to content

Commit

Permalink
os: Rename direcorty functions test.
Browse files Browse the repository at this point in the history
  • Loading branch information
pfalcon committed May 14, 2014
1 parent a55dc7e commit 780a993
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion os/test_dirs.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,14 @@
import os

print(os.getcwd())

l = os.listdir()
print(l)
assert "test_listdir.py" in l
assert "test_dirs.py" in l
assert "os" in l

for t in os.walk("."):
print(t)

for t in os.walk(".", False):
print(t)

0 comments on commit 780a993

Please sign in to comment.