From ba48e230c607016b2c92679173e5e7603fa6204c Mon Sep 17 00:00:00 2001 From: Francesco Rodriguez Date: Wed, 9 May 2012 01:01:02 -0500 Subject: Fix build --- activerecord/test/cases/migration_test.rb | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) (limited to 'activerecord/test/cases') 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 -- cgit v1.2.3