aboutsummaryrefslogblamecommitdiffstats
path: root/activemodel/test/cases/type/binary_test.rb
blob: 3221a73e4920714cf39c644825c5562d2445d237 (plain) (tree)
1
2
3
4
5
6
7
8
9

                             
                      





                                            
                                 





                                        
# frozen_string_literal: true

require "cases/helper"

module ActiveModel
  module Type
    class BinaryTest < ActiveModel::TestCase
      def test_type_cast_binary
        type = Type::Binary.new
        assert_nil type.cast(nil)
        assert_equal "1", type.cast("1")
        assert_equal 1, type.cast(1)
      end
    end
  end
end