From d496db1388bd0d3f43c0c35547942fb4abb4082c Mon Sep 17 00:00:00 2001 From: Jeremy Kemper Date: Thu, 8 Dec 2005 04:46:57 +0000 Subject: Reloading an instance refreshes its aggregations as well as its associations. References #3024. git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@3242 5ecf4fe2-1ee6-0310-87b1-e25e094e27de --- activerecord/test/fixtures/customer.rb | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'activerecord/test/fixtures') diff --git a/activerecord/test/fixtures/customer.rb b/activerecord/test/fixtures/customer.rb index c36d4d33a8..2eba052eee 100644 --- a/activerecord/test/fixtures/customer.rb +++ b/activerecord/test/fixtures/customer.rb @@ -44,4 +44,8 @@ class GpsLocation def longitude gps_location.split("x").last end + + def ==(other) + self.latitude == other.latitude && self.longitude == other.longitude + end end \ No newline at end of file -- cgit v1.2.3