diff options
author | Kasper Timm Hansen <kaspth@gmail.com> | 2018-08-11 21:14:54 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-08-11 21:14:54 +0200 |
commit | 317efa5c3593b70e9cc9a2fcb67488a302b71731 (patch) | |
tree | 49c2a2494d85f65914a4bb0cf7df7e3af383c949 /railties/test | |
parent | 76b3c18558b025c111a5e34d3cd39e488eaa5802 (diff) | |
parent | 2c667814c8ea47a5e73b60a2bd846bd31fef3a32 (diff) | |
download | rails-317efa5c3593b70e9cc9a2fcb67488a302b71731.tar.gz rails-317efa5c3593b70e9cc9a2fcb67488a302b71731.tar.bz2 rails-317efa5c3593b70e9cc9a2fcb67488a302b71731.zip |
Merge pull request #33587 from bogdanvlviv/follow-up-33202
`bundle binstubs bundler` should be executed after `bundle install`
Diffstat (limited to 'railties/test')
-rw-r--r-- | railties/test/generators/app_generator_test.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/railties/test/generators/app_generator_test.rb b/railties/test/generators/app_generator_test.rb index 0d6c1338be..f33a7bd99d 100644 --- a/railties/test/generators/app_generator_test.rb +++ b/railties/test/generators/app_generator_test.rb @@ -972,7 +972,7 @@ class AppGeneratorTest < Rails::Generators::TestCase template end - sequence = ["git init", "binstubs bundler", "install", "exec spring binstub --all", "echo ran after_bundle"] + sequence = ["git init", "install", "binstubs bundler", "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}" |