1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

Merge pull request #34101 from gmcgibbon/fix_bundler_1_16_6_test_failures

Remove bundler warnings from bin/setup output
This commit is contained in:
Rafael França 2018-10-05 16:35:35 -04:00 committed by GitHub
commit c9e0a61db1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -43,18 +43,20 @@ module ApplicationTests
# Ignore line that's only output by Bundler < 1.14
output.sub!(/^Resolving dependencies\.\.\.\n/, "")
# Suppress Bundler platform warnings from output
output.gsub!(/^The dependency .* will be unused .*\.\n/, "")
assert_equal(<<-OUTPUT, output)
== Installing dependencies ==
The Gemfile's dependencies are satisfied
assert_equal(<<~OUTPUT, output)
== Installing dependencies ==
The Gemfile's dependencies are satisfied
== Preparing database ==
Created database 'db/development.sqlite3'
Created database 'db/test.sqlite3'
== Preparing database ==
Created database 'db/development.sqlite3'
Created database 'db/test.sqlite3'
== Removing old logs and tempfiles ==
== Removing old logs and tempfiles ==
== Restarting application server ==
== Restarting application server ==
OUTPUT
end
end