diff options
author | Mark Roberts <wizzat@gmail.com> | 2014-04-07 19:44:40 -0700 |
---|---|---|
committer | Mark Roberts <wizzat@gmail.com> | 2014-04-07 19:44:40 -0700 |
commit | 6ee151427c144cc830eba954234f4f89f4529fe3 (patch) | |
tree | 35fc923fa22496a01914de1507cfd19db9d3e671 /test/test_client.py | |
parent | 9bed11db98387c0d9e456528130b330631dc50af (diff) | |
download | kafka-python-6ee151427c144cc830eba954234f4f89f4529fe3.tar.gz |
Remove test support for py26 since it's broken
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 |