aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/cases/arel/nodes/binary_test.rb
blob: 0bea35f7dd3369084623cafd1a8bfe5432e9ea42 (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
# frozen_string_literal: true
require_relative '../helper'

module Arel
  module Nodes
    describe 'Binary' do
      describe '#hash' do
        it 'generates a hash based on its value' do
          eq = Equality.new('foo', 'bar')
          eq2 = Equality.new('foo', 'bar')
          eq3 = Equality.new('bar', 'baz')

          assert_equal eq.hash, eq2.hash
          refute_equal eq.hash, eq3.hash
        end

        it 'generates a hash specific to its class' do
          eq = Equality.new('foo', 'bar')
          neq = NotEqual.new('foo', 'bar')

          refute_equal eq.hash, neq.hash
        end
      end
    end
  end
end