aboutsummaryrefslogblamecommitdiffstats
path: root/spec/active_relation/unit/relations/compound_spec.rb
blob: 54a89f3f570e78578c66815b7d48f83dbfac30fb (plain) (tree)
1
2
3
4
5
6
7
8
9
                                                                          
 


                      



                                       



                     
         





                                                                           
                                                                                                               

         





                                                                                                

     
require File.join(File.dirname(__FILE__), '..', '..', '..', 'spec_helper')

module ActiveRelation
  describe Compound do
    before do
      class ConcreteCompound < Compound
        def initialize(relation)
          @relation = relation
        end
        
        def ==(other)
          true
        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
    
    describe 'hashing' do
      it 'implements hash equality' do
        ConcreteCompound.new(@relation).should hash_the_same_as(ConcreteCompound.new(@relation))
      end
    end
  end
end