summaryrefslogtreecommitdiff
path: root/python/qpid/tests/address.py
diff options
context:
space:
mode:
Diffstat (limited to 'python/qpid/tests/address.py')
-rw-r--r--python/qpid/tests/address.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/python/qpid/tests/address.py b/python/qpid/tests/address.py
index 07349d8c6c..7e6c6a5ee5 100644
--- a/python/qpid/tests/address.py
+++ b/python/qpid/tests/address.py
@@ -303,3 +303,7 @@ class AddressTests(ParserBase, Test):
def testMap3(self):
self.valid('name/subject; { "foo.bar": value }',
"name", "subject", {"foo.bar": "value"})
+
+ def testBoolean(self):
+ self.valid("name/subject; { true: True, false: False }",
+ "name", "subject", {"true": True, "false": False})