aboutsummaryrefslogblamecommitdiffstats
path: root/spec/nodes/or_spec.rb
blob: 88484ff4f74f5a14d5e3a121ef794d6761359bb7 (plain) (tree)
1
2
3
4
5
6
7
8
9








                                       

                                               

                               

                                        




           
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.expr.left.should == left
          check node.expr.right.should == right

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