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

Use conditionalized requiring for the test environment without Bundler.

This commit is contained in:
Jun Aruga 2017-02-16 17:54:03 +01:00
parent 6b96a9398f
commit 063c721c13

View file

@ -1,7 +1,12 @@
# Copyright (c) 2011 Evan Phoenix
# Copyright (c) 2005 Zed A. Shaw
require "bundler/setup"
begin
require "bundler/setup"
rescue LoadError
require "net/http"
require "timeout"
end
require "minitest/autorun"
require "minitest/pride"
require "puma"