Skip to content

Commit

Permalink
Merge pull request rails#6219 from frodsan/fix_build
Browse files Browse the repository at this point in the history
Fix build - 3.2
  • Loading branch information
drogus committed May 9, 2012
2 parents b003ddf + ba48e23 commit 8f5079f
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion activerecord/test/cases/migration_test.rb
Expand Up @@ -874,9 +874,17 @@ def test_remove_column_no_second_parameter_raises_exception
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
Expand Down

0 comments on commit 8f5079f

Please sign in to comment.