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_util.py | |
parent | 9bed11db98387c0d9e456528130b330631dc50af (diff) | |
download | kafka-python-6ee151427c144cc830eba954234f4f89f4529fe3.tar.gz |
Remove test support for py26 since it's broken
Diffstat (limited to 'test/test_util.py')
-rw-r--r-- | test/test_util.py | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/test/test_util.py b/test/test_util.py new file mode 100644 index 0000000..e6faabb --- /dev/null +++ b/test/test_util.py @@ -0,0 +1,15 @@ +import os +import random +import struct +import unittest +import kafka.util + +class UtilTest(unittest.TestCase): + def test_relative_unpack(self): + pass + + def test_write_int_string(self): + pass + + def test_read_int_string(self): + pass |