aboutsummaryrefslogtreecommitdiffstats
path: root/spec/arel/nodes/equality_spec.rb
blob: d91fa0df03bf5fbe73ee73857fe55b99c44400f0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
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

      describe 'and' do
        it 'makes and AND node' do
          attr = Table.new(:users)[:id]
          left  = attr.eq(10)
          right = attr.eq(11)
          node  = left.and right
          check node.left.should == left
          check node.right.should == right
        end
      end
    end
  end
end