aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorArthur Neves <arthurnn@gmail.com>2016-01-15 16:13:19 -0500
committerArthur Neves <arthurnn@gmail.com>2016-01-15 16:13:19 -0500
commitd25e79fba6090d56769da6f0fbb401bb1afdb28a (patch)
tree47668b925d1b13dc92c772896f722c2e8b41b014
parenta3f24024f92853c2f3c4349365450edb8459a098 (diff)
downloadrails-d25e79fba6090d56769da6f0fbb401bb1afdb28a.tar.gz
rails-d25e79fba6090d56769da6f0fbb401bb1afdb28a.tar.bz2
rails-d25e79fba6090d56769da6f0fbb401bb1afdb28a.zip
update bundler message
-rw-r--r--railties/test/generators/plugin_new_generator_test.rb5
1 files changed, 2 insertions, 3 deletions
diff --git a/railties/test/generators/plugin_new_generator_test.rb b/railties/test/generators/plugin_new_generator_test.rb
index a33c6b096c..7fc53ceb27 100644
--- a/railties/test/generators/plugin_new_generator_test.rb
+++ b/railties/test/generators/plugin_new_generator_test.rb
@@ -121,7 +121,7 @@ class PluginNewGeneratorTest < Rails::Generators::TestCase
def test_generation_runs_bundle_install_with_full_and_mountable
result = run_generator [destination_root, "--mountable", "--full"]
- assert_equal 1, result.scan("Your bundle is complete").size
+ assert_equal 1, result.scan("Bundle complete!").size
end
def test_skipping_javascripts_without_mountable_option
@@ -263,7 +263,7 @@ class PluginNewGeneratorTest < Rails::Generators::TestCase
assert_file "spec/dummy/config/application.rb"
assert_no_file "test"
end
-
+
def test_ensure_that_gitignore_can_be_generated_from_a_template_for_dummy_path
FileUtils.cd(Rails.root)
run_generator([destination_root, "--dummy_path", "spec/dummy" "--skip-test-unit"])
@@ -329,4 +329,3 @@ protected
silence(:stdout){ generator.send(*args, &block) }
end
end
-