summaryrefslogtreecommitdiff
path: root/test/fixtures.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/fixtures.py')
-rw-r--r--test/fixtures.py15
1 files changed, 0 insertions, 15 deletions
diff --git a/test/fixtures.py b/test/fixtures.py
index 00de82c..adb0642 100644
--- a/test/fixtures.py
+++ b/test/fixtures.py
@@ -61,21 +61,6 @@ class Fixture(object):
return os.path.join(cls.project_root, "servers", cls.kafka_version, "resources", filename)
@classmethod
- def test_classpath(cls):
- # ./kafka-src/bin/kafka-run-class.sh is the authority.
- jars = ["."]
-
- # 0.8.0 build path, should contain the core jar and a deps jar
- jars.extend(glob.glob(cls.kafka_root + "/core/target/scala-%s/*.jar" % cls.scala_version))
-
- # 0.8.1 build path, should contain the core jar and several dep jars
- jars.extend(glob.glob(cls.kafka_root + "/core/build/libs/*.jar"))
- jars.extend(glob.glob(cls.kafka_root + "/core/build/dependant-libs-%s/*.jar" % cls.scala_version))
-
- jars = filter(os.path.exists, map(os.path.abspath, jars))
- return ":".join(jars)
-
- @classmethod
def kafka_run_class_args(cls, *args):
result = [os.path.join(cls.kafka_root, 'bin', 'kafka-run-class.sh')]
result.extend(args)