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

Remove bundler warnings from bin/setup output

This commit is contained in:
Gannon McGibbon 2018-10-05 13:41:59 -04:00
parent 0b6d2189c8
commit b596346038

View file

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