Add tell mock to MockFH

This commit is contained in:
Erik Johnson 2018-06-17 17:25:21 -05:00
parent 4b5a393445
commit 19022eb9e5
No known key found for this signature in database
GPG key ID: 5E5583C437808F3F

View file

@ -105,6 +105,7 @@ class MockFH(object):
self.close = Mock()
self.write = Mock()
self.writelines = Mock()
self.tell = Mock()
def _iterate_read_data(self, read_data):
'''