diff options
author | Adam Meily <meily.adam@gmail.com> | 2015-09-24 23:16:12 -0400 |
---|---|---|
committer | Adam Meily <meily.adam@gmail.com> | 2015-09-24 23:16:12 -0400 |
commit | 787839d3bc41cdd86905df6883b7de2b1bfb165a (patch) | |
tree | 1b88474836b6f431f6992fb6a302a02b6d053a28 /tests/test_sftp.py | |
parent | e9b9dcaa242d12f917fb44103d6493a686d409a8 (diff) |
add unit tests for file-like object methods and update changelog and docs
Diffstat (limited to 'tests/test_sftp.py')
-rwxr-xr-x | tests/test_sftp.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/test_sftp.py b/tests/test_sftp.py index cb8f7f84..b1829b4c 100755 --- a/tests/test_sftp.py +++ b/tests/test_sftp.py @@ -429,6 +429,7 @@ class SFTPTest (unittest.TestCase): line_number += 1 pos_list.append(loc) loc = f.tell() + self.assertTrue(f.seekable()) f.seek(pos_list[6], f.SEEK_SET) self.assertEqual(f.readline(), 'Nouzilly, France.\n') f.seek(pos_list[17], f.SEEK_SET) |