require "cases/helper" require "active_model/type" module ActiveModel module Type class ValueTest < ActiveModel::TestCase def test_type_equality assert_equal Type::Value.new, Type::Value.new assert_not_equal Type::Value.new, Type::Integer.new assert_not_equal Type::Value.new(precision: 1), Type::Value.new(precision: 2) end end end end