diff options
Diffstat (limited to 'spec/active_relation/unit/relations/compound_spec.rb')
-rw-r--r-- | spec/active_relation/unit/relations/compound_spec.rb | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/spec/active_relation/unit/relations/compound_spec.rb b/spec/active_relation/unit/relations/compound_spec.rb new file mode 100644 index 0000000000..03de27fb05 --- /dev/null +++ b/spec/active_relation/unit/relations/compound_spec.rb @@ -0,0 +1,21 @@ +require File.join(File.dirname(__FILE__), '..', '..', '..', 'spec_helper') + +module ActiveRelation + describe Compound do + before do + class ConcreteCompound < Compound + def initialize(relation) + @relation = relation + end + end + @relation = Table.new(:users) + @compound_relation = ConcreteCompound.new(@relation) + end + + describe '#attributes' do + it 'manufactures attributes associated with the compound relation' do + @compound_relation.attributes.should == @relation.attributes.collect { |a| a.bind(@compound_relation) } + end + end + end +end
\ No newline at end of file |