diff options
author | Michael Koziarski <michael@koziarski.com> | 2007-10-19 02:51:44 +0000 |
---|---|---|
committer | Michael Koziarski <michael@koziarski.com> | 2007-10-19 02:51:44 +0000 |
commit | 17ac677a2d8383812769640bcc15bd82141f29ee (patch) | |
tree | 0fac7f68eb600d6b27b3cfe0ba0079b3e8523dd2 /activerecord | |
parent | 62fd6532e54734be5f537e247ef92b15157a83c8 (diff) | |
download | rails-17ac677a2d8383812769640bcc15bd82141f29ee.tar.gz rails-17ac677a2d8383812769640bcc15bd82141f29ee.tar.bz2 rails-17ac677a2d8383812769640bcc15bd82141f29ee.zip |
typo in test name
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@7977 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'activerecord')
-rw-r--r-- | activerecord/test/migration_test.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/activerecord/test/migration_test.rb b/activerecord/test/migration_test.rb index e95d39ce5d..997d149737 100644 --- a/activerecord/test/migration_test.rb +++ b/activerecord/test/migration_test.rb @@ -879,7 +879,7 @@ if ActiveRecord::Base.connection.supports_migrations? end end - def test_references_column_type_with_polymarphic_adds_type + def test_references_column_type_with_polymorphic_adds_type with_new_table do |t| t.expects(:column).with('taggable_type', :string, {}) t.expects(:column).with('taggable_id', :integer, {}) |