aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/cases/arel/nodes/or_test.rb
blob: 4f8d56d1657b00326eec746eca293c5774b74fcb (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
28
29
30
31
32
33
34
35
# frozen_string_literal: true
require_relative '../helper'

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
          node.expr.left.must_equal left
          node.expr.right.must_equal right

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

      describe 'equality' do
        it 'is equal with equal ivars' do
          array = [Or.new('foo', 'bar'), Or.new('foo', 'bar')]
          assert_equal 1, array.uniq.size
        end

        it 'is not equal with different ivars' do
          array = [Or.new('foo', 'bar'), Or.new('foo', 'baz')]
          assert_equal 2, array.uniq.size
        end
      end
    end
  end
end