aboutsummaryrefslogtreecommitdiffstats
path: root/actionwebservice/test
diff options
context:
space:
mode:
authorLeon Breedt <bitserf@gmail.com>2005-04-05 16:00:28 +0000
committerLeon Breedt <bitserf@gmail.com>2005-04-05 16:00:28 +0000
commit9b42cd8cc1d52e5a8d80b67b17e5887c15e90904 (patch)
tree3e79247e7ca3b2bcabf17c38ae48412565b5ca68 /actionwebservice/test
parent7a5bac1de0c6a851d5e2a224629ee0a135db6bc2 (diff)
downloadrails-9b42cd8cc1d52e5a8d80b67b17e5887c15e90904.tar.gz
rails-9b42cd8cc1d52e5a8d80b67b17e5887c15e90904.tar.bz2
rails-9b42cd8cc1d52e5a8d80b67b17e5887c15e90904.zip
add API::Method#expects_to_hash convenience as well
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@1092 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'actionwebservice/test')
-rw-r--r--actionwebservice/test/api_test.rb6
1 files changed, 6 insertions, 0 deletions
diff --git a/actionwebservice/test/api_test.rb b/actionwebservice/test/api_test.rb
index 986df47a14..2278a8213e 100644
--- a/actionwebservice/test/api_test.rb
+++ b/actionwebservice/test/api_test.rb
@@ -85,6 +85,12 @@ class TC_API < Test::Unit::TestCase
assert_equal -1, API.api_methods[:void].expects_index_of('test')
end
+ def test_parameter_hash
+ method = API.api_methods[:named_signature]
+ hash = method.expects_to_hash([5, false])
+ assert_equal({:appkey => 5, :publish => false}, hash)
+ end
+
def test_to_s
assert_equal 'void Expects(int param0, bool param1)', APITest::API.api_methods[:expects].to_s
end