From 6079ec1f77daf364a2b25cf651e9b3c9e1b95a16 Mon Sep 17 00:00:00 2001 From: Rasik Pandey Date: Wed, 28 Jan 2009 19:39:06 +0000 Subject: ActiveResource#eqls? and == should not take into account object identity and prefix options should be considered. [#1098 state:resolved] Signed-off-by: Pratik Naik --- activeresource/test/base/equality_test.rb | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'activeresource/test/base') diff --git a/activeresource/test/base/equality_test.rb b/activeresource/test/base/equality_test.rb index 1fb8938e95..84f1a7b998 100644 --- a/activeresource/test/base/equality_test.rb +++ b/activeresource/test/base/equality_test.rb @@ -40,4 +40,13 @@ class BaseEqualityTest < Test::Unit::TestCase assert_equal resource.id.hash, resource.hash end end + + def test_with_prefix_options + assert_equal @one == @one, @one.eql?(@one) + assert_equal @one == @one.dup, @one.eql?(@one.dup) + new_one = @one.dup + new_one.prefix_options = {:foo => 'bar'} + assert_not_equal @one, new_one + end + end -- cgit v1.2.3