From 9954b4b99d9119ea55b1c204b12bad1e7b45589b Mon Sep 17 00:00:00 2001 From: Paul Sokolovsky Date: Sun, 19 Jan 2014 18:46:21 +0200 Subject: Add directory for I/O tests with basic test for file methods. --- tests/io/file1.py | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 tests/io/file1.py (limited to 'tests/io/file1.py') diff --git a/tests/io/file1.py b/tests/io/file1.py new file mode 100644 index 000000000..8552f535b --- /dev/null +++ b/tests/io/file1.py @@ -0,0 +1,4 @@ +f = open("io/data/file1") +print(f.read(5)) +print(f.readline()) +print(f.read()) -- cgit v1.2.3