aboutsummaryrefslogtreecommitdiffstats
path: root/railties
diff options
context:
space:
mode:
authorGuilherme Reis Campos <guilhermekbsa@gmail.com>2017-08-02 23:41:41 +1000
committerGuilherme Reis Campos <guilhermekbsa@gmail.com>2017-08-03 17:16:22 +1000
commit1cc6c74db20de139f6ad3bedc7cd7e28dc83283e (patch)
treef7e358a1aae3fa623e44457e62a402ef45f8bbe7 /railties
parent090eaa7e1b42143ffdb42409aa5d429cbeb3e55d (diff)
downloadrails-1cc6c74db20de139f6ad3bedc7cd7e28dc83283e.tar.gz
rails-1cc6c74db20de139f6ad3bedc7cd7e28dc83283e.tar.bz2
rails-1cc6c74db20de139f6ad3bedc7cd7e28dc83283e.zip
Handling add/remove to/from migration edge cases
Making sure the table name is parsed correctly when an add/remove column migration have 'from'/'to' in the table name.
Diffstat (limited to 'railties')
-rw-r--r--railties/test/generators/migration_generator_test.rb22
1 files changed, 22 insertions, 0 deletions
diff --git a/railties/test/generators/migration_generator_test.rb b/railties/test/generators/migration_generator_test.rb
index 6fe6e4ca07..db0808750e 100644
--- a/railties/test/generators/migration_generator_test.rb
+++ b/railties/test/generators/migration_generator_test.rb
@@ -48,6 +48,17 @@ class MigrationGeneratorTest < Rails::Generators::TestCase
end
end
+ def test_add_migration_with_table_having_from_in_title
+ migration = "add_email_address_to_blacklisted_from_campaign"
+ run_generator [migration, "email_address:string"]
+
+ assert_migration "db/migrate/#{migration}.rb" do |content|
+ assert_method :change, content do |change|
+ assert_match(/add_column :blacklisted_from_campaigns, :email_address, :string/, change)
+ end
+ end
+ end
+
def test_remove_migration_with_indexed_attribute
migration = "remove_title_body_from_posts"
run_generator [migration, "title:string:index", "body:text"]
@@ -73,6 +84,17 @@ class MigrationGeneratorTest < Rails::Generators::TestCase
end
end
+ def test_remove_migration_with_table_having_to_in_title
+ migration = "remove_email_address_from_sent_to_user"
+ run_generator [migration, "email_address:string"]
+
+ assert_migration "db/migrate/#{migration}.rb" do |content|
+ assert_method :change, content do |change|
+ assert_match(/remove_column :sent_to_users, :email_address, :string/, change)
+ end
+ end
+ end
+
def test_remove_migration_with_references_options
migration = "remove_references_from_books"
run_generator [migration, "author:belongs_to", "distributor:references{polymorphic}"]