From bd79a4eb3b20c3e46fd7eaf79162df7429766514 Mon Sep 17 00:00:00 2001 From: David Heinemeier Hansson Date: Thu, 19 May 2005 16:39:50 +0000 Subject: Fixed that clone would break when an aggregate had the same name as one of its attributes #1307 [bitsweat] git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@1309 5ecf4fe2-1ee6-0310-87b1-e25e094e27de --- activerecord/test/fixtures/developer.rb | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'activerecord/test/fixtures/developer.rb') diff --git a/activerecord/test/fixtures/developer.rb b/activerecord/test/fixtures/developer.rb index 78f8f54db7..6d01490844 100644 --- a/activerecord/test/fixtures/developer.rb +++ b/activerecord/test/fixtures/developer.rb @@ -4,3 +4,9 @@ class Developer < ActiveRecord::Base validates_inclusion_of :salary, :in => 50000..200000 validates_length_of :name, :within => 3..20 end + +DeveloperSalary = Struct.new(:amount) +class DeveloperWithAggregate < ActiveRecord::Base + self.table_name = 'developers' + composed_of :salary, :class_name => 'DeveloperSalary', :mapping => [%w(salary amount)] +end -- cgit v1.2.3