Sha256: 7b1adb6cde80c0e7ab15827835dcb48822bb901ee1a0fe05ed630cc4490cbd69

Contents?: true

Size: 681 Bytes

Versions: 6

Compression:

Stored size: 681 Bytes

Contents

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

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
ibm_db-5.2.0-x86-mingw32 test/cases/types_test.rb
ibm_db-5.1.0-x86-mingw32 test/cases/types_test.rb
ibm_db-5.0.5-x86-mingw32 test/cases/types_test.rb
ibm_db-5.0.4-x86-mingw32 test/cases/types_test.rb
ibm_db-5.0.3-x86-mingw32 test/cases/types_test.rb
ibm_db-5.0.2-x86-mingw32 test/cases/types_test.rb