aboutsummaryrefslogtreecommitdiffstats
path: root/spec/arel/nodes/equality_spec.rb
blob: b74af3a039dfeb91f081095895b978ac41f9f0b8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
module Arel
  module Nodes
    describe 'equality' 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
        end
      end
    end
  end
end