diff options
author | George Claghorn <george@basecamp.com> | 2019-01-04 19:43:11 -0500 |
---|---|---|
committer | George Claghorn <george@basecamp.com> | 2019-01-04 22:22:49 -0500 |
commit | 0decd2ddc4a94cf522fc8ea8e6c73b9deedfdd93 (patch) | |
tree | 91b8ddcf86b15356cd8d3dee235bf53a1778572b /railties/test | |
parent | 8a23a0e8c20c0cccf0073906d7dd7f809bfa836d (diff) | |
parent | cfe4674d3637c746cdb3c2b5131e2de498775529 (diff) | |
download | rails-0decd2ddc4a94cf522fc8ea8e6c73b9deedfdd93.tar.gz rails-0decd2ddc4a94cf522fc8ea8e6c73b9deedfdd93.tar.bz2 rails-0decd2ddc4a94cf522fc8ea8e6c73b9deedfdd93.zip |
Import Action Text
Diffstat (limited to 'railties/test')
-rw-r--r-- | railties/test/railties/engine_test.rb | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/railties/test/railties/engine_test.rb b/railties/test/railties/engine_test.rb index ca77c3a786..e62e8c8b44 100644 --- a/railties/test/railties/engine_test.rb +++ b/railties/test/railties/engine_test.rb @@ -90,8 +90,8 @@ module RailtiesTest boot_rails Dir.chdir(app_path) do - # Install Active Storage and Action Mailbox migration files first so as not to affect test. - `bundle exec rake active_storage:install action_mailbox:install` + # Install Active Storage, Action Mailbox, and Action Text migration files first so as not to affect test. + `bundle exec rake active_storage:install action_mailbox:install action_text:install` output = `bundle exec rake bukkits:install:migrations` ["CreateUsers", "AddLastNameToUsers", "CreateSessions"].each do |migration_name| @@ -177,8 +177,8 @@ module RailtiesTest boot_rails Dir.chdir(app_path) do - # Install Active Storage and Action Mailbox migrations first so as not to affect test. - `bundle exec rake active_storage:install action_mailbox:install` + # Install Active Storage, Action Mailbox, and Action Text migrations first so as not to affect test. + `bundle exec rake active_storage:install action_mailbox:install action_text:install` output = `bundle exec rake railties:install:migrations`.split("\n") assert_match(/Copied migration \d+_create_users\.core_engine\.rb from core_engine/, output.first) |