aboutsummaryrefslogtreecommitdiffstats
path: root/spec/arel/nodes/or_spec.rb
blob: e855b9245322dce293484ecc96f1374c5a84c01d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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