aboutsummaryrefslogblamecommitdiffstats
path: root/activerecord/test/cases/type/unsigned_integer_test.rb
blob: dd05cf3fff4de7c4d732498de6b16c59227d593c (plain) (tree)
1
2
3
4
5
6
7
8
9

                             
                      
 
                   
             
                                                      
                                                  
                                                                           


                                           
                                                 
                                           




           
# frozen_string_literal: true

require "cases/helper"

module ActiveRecord
  module Type
    class UnsignedIntegerTest < ActiveRecord::TestCase
      test "unsigned int max value is in range" do
        assert_equal(4294967295, UnsignedInteger.new.serialize(4294967295))
      end

      test "minus value is out of range" do
        assert_raises(ActiveModel::RangeError) do
          UnsignedInteger.new.serialize(-1)
        end
      end
    end
  end
end