aboutsummaryrefslogtreecommitdiffstats
path: root/test/nodes/test_casted.rb
blob: 748879a5389985eb02f8e68aebcaad7746042bb3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# frozen_string_literal: true
require 'helper'

module Arel
  module Nodes
    describe Casted do
      describe '#hash' do
        it 'is equal when eql? returns true' do
          one = Casted.new 1, 2
          also_one = Casted.new 1, 2

          assert_equal one.hash, also_one.hash
        end
      end
    end
  end
end