aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/migration_test.rb
diff options
context:
space:
mode:
Diffstat (limited to 'activerecord/test/migration_test.rb')
-rw-r--r--activerecord/test/migration_test.rb20
1 files changed, 17 insertions, 3 deletions
diff --git a/activerecord/test/migration_test.rb b/activerecord/test/migration_test.rb
index 5a86a678cd..cbcaff8cc4 100644
--- a/activerecord/test/migration_test.rb
+++ b/activerecord/test/migration_test.rb
@@ -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)