aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/cases/arel/nodes/table_alias_test.rb
blob: c661b6771eecfa0855fafb0e09e132f8ba1a4dfa (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
# frozen_string_literal: true

require_relative "../helper"

module Arel
  module Nodes
    describe "table alias" do
      describe "equality" do
        it "is equal with equal ivars" do
          relation1 = Table.new(:users)
          node1     = TableAlias.new relation1, :foo
          relation2 = Table.new(:users)
          node2     = TableAlias.new relation2, :foo
          array = [node1, node2]
          assert_equal 1, array.uniq.size
        end

        it "is not equal with different ivars" do
          relation1 = Table.new(:users)
          node1     = TableAlias.new relation1, :foo
          relation2 = Table.new(:users)
          node2     = TableAlias.new relation2, :bar
          array = [node1, node2]
          assert_equal 2, array.uniq.size
        end
      end
    end
  end
end