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

                             
                      



                                            

                                                                                
                                                             


                                                
                                   








                                                              


       
# frozen_string_literal: true

require "cases/helper"

module ActiveRecord
  module ConnectionAdapters
    class TypesTest < ActiveRecord::TestCase
      def test_attributes_which_are_invalid_for_database_can_still_be_reassigned
        type_which_cannot_go_to_the_database = Type::Value.new
        def type_which_cannot_go_to_the_database.serialize(*)
          raise
        end
        klass = Class.new(ActiveRecord::Base) do
          self.table_name = "posts"
          attribute :foo, type_which_cannot_go_to_the_database
        end
        model = klass.new

        model.foo = "foo"
        model.foo = "bar"

        assert_equal "bar", model.foo
      end
    end
  end
end