1
0
Fork 0
mirror of https://github.com/puma/puma.git synced 2022-11-09 13:48:40 -05:00

Reenable logging in the test

This commit is contained in:
Tim Morgan 2020-02-13 15:46:11 -06:00
parent 359cb697db
commit 08dc10f1af

View file

@ -21,12 +21,12 @@ class TestPreserveBundlerEnv < TestIntegration
Dir.chdir(File.expand_path("bundle_preservation_test", __dir__)) do
@server = IO.popen(env, cmd.split, "r")
end
wait_for_server_to_boot
wait_for_server_to_boot(log: true)
@pid = @server.pid
connection = connect
initial_reply = read_body(connection)
assert_match("Gemfile.bundle_env_preservation_test", initial_reply)
restart_server connection
restart_server connection, log: true
new_reply = read_body(connection)
assert_match("Gemfile.bundle_env_preservation_test", new_reply)
end