aboutsummaryrefslogtreecommitdiffstats
path: root/actionwebservice/test/client_soap_test.rb
diff options
context:
space:
mode:
Diffstat (limited to 'actionwebservice/test/client_soap_test.rb')
-rw-r--r--actionwebservice/test/client_soap_test.rb7
1 files changed, 7 insertions, 0 deletions
diff --git a/actionwebservice/test/client_soap_test.rb b/actionwebservice/test/client_soap_test.rb
index ee02d919a4..c03c24141f 100644
--- a/actionwebservice/test/client_soap_test.rb
+++ b/actionwebservice/test/client_soap_test.rb
@@ -142,4 +142,11 @@ class TC_ClientSoap < Test::Unit::TestCase
assert_kind_of Accounting::User, scoped_model
assert_equal 'Kent', scoped_model.name
end
+
+ def test_multi_dim_return
+ md_struct = @client.multi_dim_return
+ assert_kind_of Array, md_struct.pref
+ assert_equal 2, md_struct.pref.size
+ assert_kind_of Array, md_struct.pref[0]
+ end
end