summaryrefslogtreecommitdiff
path: root/cpp/bindings/qmf/tests/ruby_console_test.rb
diff options
context:
space:
mode:
authorKenneth Anthony Giusti <kgiusti@apache.org>2010-09-22 12:51:10 +0000
committerKenneth Anthony Giusti <kgiusti@apache.org>2010-09-22 12:51:10 +0000
commiteb2f320af6e874d763fb2f2b3e81801424416cc1 (patch)
tree3630e84f77a50ddb83cbfbc0480d25280e7f5014 /cpp/bindings/qmf/tests/ruby_console_test.rb
parent1bdcd0996456626cb1180fb9227826f2d953cee1 (diff)
downloadqpid-python-eb2f320af6e874d763fb2f2b3e81801424416cc1.tar.gz
QPID-2880: allow boolean values in method call map/list arguments.
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@999919 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/bindings/qmf/tests/ruby_console_test.rb')
-rwxr-xr-xcpp/bindings/qmf/tests/ruby_console_test.rb5
1 files changed, 3 insertions, 2 deletions
diff --git a/cpp/bindings/qmf/tests/ruby_console_test.rb b/cpp/bindings/qmf/tests/ruby_console_test.rb
index dd495603eb..fcdf3ac54c 100755
--- a/cpp/bindings/qmf/tests/ruby_console_test.rb
+++ b/cpp/bindings/qmf/tests/ruby_console_test.rb
@@ -333,9 +333,10 @@ class ConsoleTest < ConsoleTestBase
'aSigned' => -666,
'aString' => "A String",
'aFloat' => 3.1415,
- 'aList' => ['x', -1, 'y', 2]}
+ 'aList' => ['x', -1, 'y', 2],
+ 'abool' => false}
- inList = ['aString', 1, -1, 2.7182, {'aMap'=> -8}]
+ inList = ['aString', 1, -1, 2.7182, {'aMap'=> -8}, true]
result = parent.test_map_list(inMap, inList)
assert_equal(result.status, 0)