From 0faca07056e2dd6284d79522614cb991a680d5d0 Mon Sep 17 00:00:00 2001 From: David Heinemeier Hansson Date: Fri, 9 Sep 2005 08:54:02 +0000 Subject: Fixed comparison of Active Record objects so two new objects are not equal #2099 [deberg] git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@2172 5ecf4fe2-1ee6-0310-87b1-e25e094e27de --- activerecord/test/base_test.rb | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'activerecord/test') diff --git a/activerecord/test/base_test.rb b/activerecord/test/base_test.rb index b12d0c941d..108955f5a3 100755 --- a/activerecord/test/base_test.rb +++ b/activerecord/test/base_test.rb @@ -468,6 +468,10 @@ class BasicsTest < Test::Unit::TestCase assert_equal Topic.find(1), Topic.find(2).parent end + def test_equality_of_new_records + assert_not_equal Topic.new, Topic.new + end + def test_hashing assert_equal [ Topic.find(1) ], [ Topic.find(2).parent ] & [ Topic.find(1) ] end -- cgit v1.2.3