kopia lustrzana https://github.com/glidernet/python-ogn-client
Update tests to work with python versions < py3.6
rodzic
13cc75cf03
commit
83aa5a5e79
|
@ -57,14 +57,13 @@ class OgnClientTest(unittest.TestCase):
|
||||||
|
|
||||||
# After .disconnect(), client._kill should be True
|
# After .disconnect(), client._kill should be True
|
||||||
self.assertTrue(client._kill)
|
self.assertTrue(client._kill)
|
||||||
mock_callback.assert_called_once()
|
self.assertEqual(mock_callback.call_count, 1)
|
||||||
|
|
||||||
# After we reconnect, .run() should be able to run again
|
# After we reconnect, .run() should be able to run again
|
||||||
mock_callback = mock.MagicMock(
|
mock_callback.reset_mock()
|
||||||
side_effect=lambda raw_msg: client.disconnect())
|
|
||||||
client.connect()
|
client.connect()
|
||||||
client.run(callback=mock_callback, autoreconnect=True)
|
client.run(callback=mock_callback, autoreconnect=True)
|
||||||
mock_callback.assert_called_once()
|
self.assertEqual(mock_callback.call_count, 1)
|
||||||
|
|
||||||
def test_50_live_messages(self):
|
def test_50_live_messages(self):
|
||||||
print("Enter")
|
print("Enter")
|
||||||
|
|
Ładowanie…
Reference in New Issue