Browse Source

tests: Add test for file.seek().

pull/980/head
Paul Sokolovsky 10 years ago
parent
commit
c7d5500142
  1. 12
      tests/io/file_seek.py

12
tests/io/file_seek.py

@ -0,0 +1,12 @@
f = open("io/data/file1", "rb")
print(f.seek(6))
print(f.read(5))
print(f.seek(0, 1))
print(f.read(4))
print(f.seek(-6, 2))
print(f.read(20))
print(f.seek(0, 0))
print(f.read(5))
Loading…
Cancel
Save