We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fc12824 commit f4fbd6eCopy full SHA for f4fbd6e
test/test_helper.rb
@@ -4,6 +4,8 @@
4
$LOAD_PATH << __dir__ unless $LOAD_PATH.include?(__dir__)
5
$LOAD_PATH << __lib__ unless $LOAD_PATH.include?(__lib__)
6
7
+TESTENV = ENV.fetch('TESTENV', "apacheds")
8
+
9
require 'pathname'
10
FIXTURES = Pathname(File.expand_path('fixtures', __dir__))
11
@@ -12,7 +14,7 @@
12
14
13
15
require 'minitest/autorun'
16
-if ENV.fetch('TESTENV', "apacheds") == "apacheds"
17
+if TESTENV == "apacheds"
18
# Make sure we clean up running test server
19
# NOTE: We need to do this manually since its internal `at_exit` hook
20
# collides with Minitest's autorun at_exit handling, hence this hook.
0 commit comments