aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/cases/migration_test.rb
diff options
context:
space:
mode:
authorFrancesco Rodriguez <lrodriguezsanc@gmail.com>2012-05-09 01:01:02 -0500
committerFrancesco Rodriguez <lrodriguezsanc@gmail.com>2012-05-09 01:01:02 -0500
commitba48e230c607016b2c92679173e5e7603fa6204c (patch)
tree55f7faa01e5a8169aaf18298c52bd292d02efaa5 /activerecord/test/cases/migration_test.rb
parent5059c323b042574a07b45f761bacb2964241954b (diff)
downloadrails-ba48e230c607016b2c92679173e5e7603fa6204c.tar.gz
rails-ba48e230c607016b2c92679173e5e7603fa6204c.tar.bz2
rails-ba48e230c607016b2c92679173e5e7603fa6204c.zip
Fix build
Diffstat (limited to 'activerecord/test/cases/migration_test.rb')
-rw-r--r--activerecord/test/cases/migration_test.rb10
1 files changed, 9 insertions, 1 deletions
diff --git a/activerecord/test/cases/migration_test.rb b/activerecord/test/cases/migration_test.rb
index 8dde6c6b5a..a448e0af9d 100644
--- a/activerecord/test/cases/migration_test.rb
+++ b/activerecord/test/cases/migration_test.rb
@@ -874,9 +874,17 @@ if ActiveRecord::Base.connection.supports_migrations?
end
def test_remove_column_with_array_as_an_argument_is_deprecated
+ ActiveRecord::Base.connection.create_table(:hats) do |table|
+ table.column :hat_name, :string, :limit => 100
+ table.column :hat_size, :integer
+ table.column :hat_style, :string, :limit => 100
+ end
+
assert_deprecated /Passing array to remove_columns is deprecated/ do
- Person.connection.remove_column("people", ["last_name", "description"])
+ Person.connection.remove_column("hats", ["hat_name", "hat_size"])
end
+ ensure
+ ActiveRecord::Base.connection.drop_table(:hats)
end
def test_change_type_of_not_null_column