aboutsummaryrefslogtreecommitdiffstats
path: root/railties/test
diff options
context:
space:
mode:
authorKasper Timm Hansen <kaspth@gmail.com>2018-01-09 20:59:04 +0100
committerGitHub <noreply@github.com>2018-01-09 20:59:04 +0100
commit33721a71e39d5a228ae3cd7949fa83198dc3eaa9 (patch)
treec082b86ad57d581ad094f475c4347a28d33ede60 /railties/test
parentbaa88b8ddff59b10b8e98eeee7503e2416da8abe (diff)
parente32eda6adfa929efb77aabebc6beeeb0d89a82bd (diff)
downloadrails-33721a71e39d5a228ae3cd7949fa83198dc3eaa9.tar.gz
rails-33721a71e39d5a228ae3cd7949fa83198dc3eaa9.tar.bz2
rails-33721a71e39d5a228ae3cd7949fa83198dc3eaa9.zip
Merge pull request #31534 from claudiob/kaspth-approach
Don't include Active Storage migrations in new apps
Diffstat (limited to 'railties/test')
-rw-r--r--railties/test/generators/app_generator_test.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/railties/test/generators/app_generator_test.rb b/railties/test/generators/app_generator_test.rb
index fcb515c606..a616624f46 100644
--- a/railties/test/generators/app_generator_test.rb
+++ b/railties/test/generators/app_generator_test.rb
@@ -900,7 +900,7 @@ class AppGeneratorTest < Rails::Generators::TestCase
template
end
- sequence = ["git init", "install", "exec spring binstub --all", "active_storage:install", "echo ran after_bundle"]
+ sequence = ["git init", "install", "exec spring binstub --all", "echo ran after_bundle"]
@sequence_step ||= 0
ensure_bundler_first = -> command, options = nil do
assert_equal sequence[@sequence_step], command, "commands should be called in sequence #{sequence}"
@@ -917,7 +917,7 @@ class AppGeneratorTest < Rails::Generators::TestCase
end
end
- assert_equal 5, @sequence_step
+ assert_equal 4, @sequence_step
end
def test_gitignore