blob: 6d775e17ecc43c8b1ef62748938734669e6636fc (
plain) (
tree)
|
|
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
|