Exemplo n.º 1
0
def test_filecomm_tell():
    comm = FileCommunicator(mock.MagicMock())
    comm._filelike.tell.return_value = 5

    assert comm.tell() == 5
    comm._filelike.tell.assert_called_with()
Exemplo n.º 2
0
def test_filecomm_tell():
    comm = FileCommunicator(mock.MagicMock())
    comm._filelike.tell.return_value = 5

    eq_(comm.tell(), 5)
    comm._filelike.tell.assert_called_with()