summaryrefslogtreecommitdiff
path: root/python/tests
diff options
context:
space:
mode:
Diffstat (limited to 'python/tests')
-rw-r--r--python/tests/codec.py3
-rw-r--r--python/tests/spec.py12
2 files changed, 8 insertions, 7 deletions
diff --git a/python/tests/codec.py b/python/tests/codec.py
index 689a2cf4c1..f9f7aab918 100644
--- a/python/tests/codec.py
+++ b/python/tests/codec.py
@@ -23,6 +23,7 @@ from qpid.codec import Codec
from qpid.spec import load
from cStringIO import StringIO
from qpid.reference import ReferenceId
+from qpid.testlib import testrunner
__doc__ = """
@@ -53,7 +54,7 @@ __doc__ = """
"""
-SPEC = load("../specs/amqp.0-10-preview.xml")
+SPEC = load(testrunner.get_spec_file("amqp.0-10-preview.xml"))
# --------------------------------------
# --------------------------------------
diff --git a/python/tests/spec.py b/python/tests/spec.py
index c70e4f9c4b..c00faad3ba 100644
--- a/python/tests/spec.py
+++ b/python/tests/spec.py
@@ -1,11 +1,11 @@
from unittest import TestCase
from qpid.spec import load
-
+from qpid.testlib import testrunner
class SpecTest(TestCase):
def check_load(self, *urls):
- spec = load(*urls)
+ spec = load(*map(testrunner.get_spec_file, urls))
qdecl = spec.method("queue_declare")
assert qdecl != None
assert not qdecl.content
@@ -44,13 +44,13 @@ class SpecTest(TestCase):
assert args.type == "table"
def test_load_0_8(self):
- self.check_load("../specs/amqp.0-8.xml")
+ self.check_load("amqp.0-8.xml")
def test_load_0_9(self):
- self.check_load("../specs/amqp.0-9.xml")
+ self.check_load("amqp.0-9.xml")
def test_load_0_9_errata(self):
- self.check_load("../specs/amqp.0-9.xml", "../specs/amqp-errata.0-9.xml")
+ self.check_load("amqp.0-9.xml", "amqp-errata.0-9.xml")
def test_load_0_10(self):
- self.check_load("../specs/amqp.0-10-preview.xml")
+ self.check_load("amqp.0-10-preview.xml")