aboutsummaryrefslogblamecommitdiffstats
path: root/spec/arel/nodes/or_spec.rb
blob: e855b9245322dce293484ecc96f1374c5a84c01d (plain) (tree)



















                                          
module Arel
  module Nodes
    describe 'or' do
      describe '#or' do
        it 'makes an OR node' do
          attr = Table.new(:users)[:id]
          left  = attr.eq(10)
          right = attr.eq(11)
          node  = left.or right
          check node.left.should == left
          check node.right.should == right

          oror = node.or(right)
          check oror.left == node
          check oror.right == right
        end
      end
    end
  end
end