summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorAlex Rudyy <orudyy@apache.org>2013-05-13 12:38:21 +0000
committerAlex Rudyy <orudyy@apache.org>2013-05-13 12:38:21 +0000
commit2a44cededa29fea722b569810e8a77f0e6384785 (patch)
treeac70e2f437910bbfd215998ef58e7652d259f96d /tests
parentef3a3c86d769c77e3bd8fe2420b7d5729bac6909 (diff)
downloadqpid-python-2a44cededa29fea722b569810e8a77f0e6384785.tar.gz
QPID-4832: Split 0.8 python test DefaultExchangeRuleTests.testDefaultExchange into 2 tests:
testDefaultExchange testing that queue is automatically bound to a default exchange testDefaultExchangeExplicitBind testing explicit queue bind on a default exchange Exclude testDefaultExchangeExplicitBind from Java Broker python test profile git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@1481824 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'tests')
-rw-r--r--tests/src/py/qpid_tests/broker_0_8/exchange.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/src/py/qpid_tests/broker_0_8/exchange.py b/tests/src/py/qpid_tests/broker_0_8/exchange.py
index 56d6fa82e4..4c38d9fab9 100644
--- a/tests/src/py/qpid_tests/broker_0_8/exchange.py
+++ b/tests/src/py/qpid_tests/broker_0_8/exchange.py
@@ -138,6 +138,10 @@ class DefaultExchangeRuleTests(TestBase, StandardExchangeVerifier):
# Test automatic binding by queue name.
self.queue_declare(queue="d")
self.assertPublishConsume(queue="d", routing_key="d")
+
+ def testDefaultExchangeExplicitBind(self):
+ # Test automatic binding by queue name.
+ self.queue_declare(queue="d")
# Test explicit bind to default queue
self.verifyDirectExchange("")