summary refs log tree commit diff stats
path: root/tests/tos.nim
diff options
context:
space:
mode:
Diffstat (limited to 'tests/tos.nim')
-rwxr-xr-xtests/tos.nim12
1 files changed, 0 insertions, 12 deletions
diff --git a/tests/tos.nim b/tests/tos.nim
deleted file mode 100755
index 9ab4295f8..000000000
--- a/tests/tos.nim
+++ /dev/null
@@ -1,12 +0,0 @@
-# test some things of the os module
-
-import os
-
-proc walkDirTree(root: string) = 
-  for k, f in walkDir(root):
-    case k 
-    of pcFile, pcLinkToFile: echo(f)
-    of pcDirectory: walkDirTree(f)
-    of pcLinkToDirectory: nil
-
-walkDirTree(".")