diff options
author | Aaron Patterson <aaron.patterson@gmail.com> | 2010-12-02 08:41:54 -0800 |
---|---|---|
committer | Aaron Patterson <aaron.patterson@gmail.com> | 2010-12-02 08:45:37 -0800 |
commit | 077ec5a0ed3459816a4666364c722bb512c09bc7 (patch) | |
tree | 417e922c8bf73333287fda4216cb375f2a9bb9c2 /activerecord/test | |
parent | da6ce2e2532a5209a224201a08f805f62dff8d72 (diff) | |
download | rails-077ec5a0ed3459816a4666364c722bb512c09bc7.tar.gz rails-077ec5a0ed3459816a4666364c722bb512c09bc7.tar.bz2 rails-077ec5a0ed3459816a4666364c722bb512c09bc7.zip |
fixing space errors
Diffstat (limited to 'activerecord/test')
-rw-r--r-- | activerecord/test/cases/attribute_methods_test.rb | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/activerecord/test/cases/attribute_methods_test.rb b/activerecord/test/cases/attribute_methods_test.rb index 3df8197e0d..8214815bde 100644 --- a/activerecord/test/cases/attribute_methods_test.rb +++ b/activerecord/test/cases/attribute_methods_test.rb @@ -85,8 +85,7 @@ class AttributeMethodsTest < ActiveRecord::TestCase assert !topic.respond_to?("nothingness") assert !topic.respond_to?(:nothingness) end - - + # Syck calls respond_to? before actually calling initialize def test_respond_to_with_allocated_object topic = Topic.allocate @@ -95,7 +94,6 @@ class AttributeMethodsTest < ActiveRecord::TestCase assert_respond_to topic, "title" assert_respond_to topic, :title end - def test_array_content topic = Topic.new |