diff options
Diffstat (limited to 'activeresource/test/base')
-rw-r--r-- | activeresource/test/base/custom_methods_test.rb | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/activeresource/test/base/custom_methods_test.rb b/activeresource/test/base/custom_methods_test.rb index 3648e0484d..f591c14260 100644 --- a/activeresource/test/base/custom_methods_test.rb +++ b/activeresource/test/base/custom_methods_test.rb @@ -63,10 +63,10 @@ class CustomMethodsTest < Test::Unit::TestCase assert_equal ActiveResource::Response.new("", 200, {}), Person.find(1).delete(:deactivate) # With nested resources - assert_equal StreetAddress.find(1, :person_id => 1).get(:deep), + assert_equal StreetAddress.find(1, :params => { :person_id => 1 }).get(:deep), { "id" => 1, "street" => '12345 Street', "zip" => "27519" } assert_equal ActiveResource::Response.new("", 204, {}), - StreetAddress.find(1, :person_id => 1).put(:normalize_phone, :locale => 'US') + StreetAddress.find(1, :params => { :person_id => 1 }).put(:normalize_phone, :locale => 'US') end def test_custom_new_element_method @@ -82,6 +82,6 @@ class CustomMethodsTest < Test::Unit::TestCase end def test_find_custom_resources - assert_equal 'Matz', Person.find(:managers).first.name + assert_equal 'Matz', Person.find(:all, :from => :managers).first.name end end
\ No newline at end of file |