diff options
Diffstat (limited to 'test/test_client.py')
-rw-r--r-- | test/test_client.py | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/test/test_client.py b/test/test_client.py new file mode 100644 index 0000000..800ca66 --- /dev/null +++ b/test/test_client.py @@ -0,0 +1,27 @@ +import os +import random +import struct +import unittest +import kafka.client + +class ConnTest(unittest.TestCase): + def test_load_metadata_for_topics(self): + pass + + def test_get_leader_for_partition(self): + pass + + def test_get_leader_for_partition__no_leader(self): + pass + + def test_get_conn_for_broker(self): + pass + + def test_send_broker_unaware_request(self): + pass + + def test_send_broker_unaware_request__no_brokers(self): + pass + + def test_send_broker_unaware_request__all_brokers_down(self): + pass |