From b26f7a2517166eb432194dbbbcacc970391595e7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rafael=20Mendon=C3=A7a=20Fran=C3=A7a?= Date: Sun, 26 Aug 2012 03:03:12 -0300 Subject: Use the Topic class in the attribute serialized tests --- activerecord/test/cases/serialized_attribute_test.rb | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) diff --git a/activerecord/test/cases/serialized_attribute_test.rb b/activerecord/test/cases/serialized_attribute_test.rb index 45e1fca42a..0a8b3ccd2e 100644 --- a/activerecord/test/cases/serialized_attribute_test.rb +++ b/activerecord/test/cases/serialized_attribute_test.rb @@ -54,11 +54,9 @@ class SerializedAttributeTest < ActiveRecord::TestCase # is not really the value 'before type cast' so we should maybe think # about changing that in the future. def test_serialized_attribute_before_type_cast_returns_unserialized_value - klass = Class.new(ActiveRecord::Base) - klass.table_name = "topics" - klass.serialize :content, Hash + Topic.serialize :content, Hash - t = klass.new(:content => { :foo => :bar }) + t = Topic.new(:content => { :foo => :bar }) assert_equal({ :foo => :bar }, t.content_before_type_cast) t.save! t.reload @@ -66,11 +64,9 @@ class SerializedAttributeTest < ActiveRecord::TestCase end def test_serialized_attribute_calling_dup_method - klass = Class.new(ActiveRecord::Base) - klass.table_name = "topics" - klass.serialize :content, JSON + Topic.serialize :content, JSON - t = klass.new(:content => { :foo => :bar }).dup + t = Topic.new(:content => { :foo => :bar }).dup assert_equal({ :foo => :bar }, t.content_before_type_cast) end -- cgit v1.2.3