Add failing test that shows that AR::Migration.remove_column fails silently with SQLite when passed arguments as symbols.

git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@2396 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
This commit is contained in:
Marcel Molina 2005-09-28 17:50:28 +00:00
parent 4d6ad9c48b
commit f43d97a860
1 changed files with 17 additions and 3 deletions

View File

@ -132,15 +132,29 @@ if ActiveRecord::Base.connection.supports_migrations?
assert_equal TrueClass, bob.male?.class
end
def test_add_remove_single_field
def test_add_remove_single_field_using_string_arguments
assert !Person.column_methods_hash.include?(:last_name)
PeopleHaveLastNames.up
ActiveRecord::Migration.add_column 'people', 'last_name', :string
Person.reset_column_information
assert Person.column_methods_hash.include?(:last_name)
PeopleHaveLastNames.down
ActiveRecord::Migration.remove_column 'people', 'last_name'
Person.reset_column_information
assert !Person.column_methods_hash.include?(:last_name)
end
def test_add_remove_single_field_using_symbol_arguments
assert !Person.column_methods_hash.include?(:last_name)
ActiveRecord::Migration.add_column :people, :last_name, :string
Person.reset_column_information
assert Person.column_methods_hash.include?(:last_name)
ActiveRecord::Migration.remove_column :people, :last_name
Person.reset_column_information
assert !Person.column_methods_hash.include?(:last_name)