summary refs log tree commit diff stats
path: root/tests/stdlib/tstreams2.nim
diff options
context:
space:
mode:
Diffstat (limited to 'tests/stdlib/tstreams2.nim')
-rw-r--r--tests/stdlib/tstreams2.nim12
1 files changed, 0 insertions, 12 deletions
diff --git a/tests/stdlib/tstreams2.nim b/tests/stdlib/tstreams2.nim
deleted file mode 100644
index 70f0bac32..000000000
--- a/tests/stdlib/tstreams2.nim
+++ /dev/null
@@ -1,12 +0,0 @@
-discard """
-  output: '''fs is: nil'''
-"""
-import streams
-var
-  fs = newFileStream("amissingfile.txt")
-  line = ""
-echo "fs is: ",repr(fs)
-if not isNil(fs):
-  while fs.readLine(line):
-    echo line
-  fs.close()