aboutsummaryrefslogtreecommitdiffstats
path: root/activemodel/test/cases/type/value_test.rb
blob: 6edacb9833b24d474773da00994983063f2f8be4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# frozen_string_literal: true

require "cases/helper"

module ActiveModel
  module Type
    class ValueTest < ActiveSupport::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