summaryrefslogtreecommitdiff
path: root/test/test_helper.rb
diff options
context:
space:
mode:
authorAbinoam Praxedes Marques Jr <abinoam@gmail.com>2015-06-30 01:42:19 -0300
committerAbinoam Praxedes Marques Jr <abinoam@gmail.com>2015-07-09 14:23:21 -0300
commit88ed45c785cd5e355a9a1f917becc8ba2049806a (patch)
tree56cd28765d66286cbd9a6dff6fb2656385b95e2b /test/test_helper.rb
parent3165997154cf1f4daaf1839a419098c6b63360a9 (diff)
downloadhighline-88ed45c785cd5e355a9a1f917becc8ba2049806a.tar.gz
Move minitest/autorun requiring to after simplecov requiring
Requiring minitest/autorun before requiring test_helper.rb (and consequently simplecov) was compromising coverage report.
Diffstat (limited to 'test/test_helper.rb')
-rw-r--r--test/test_helper.rb1
1 files changed, 1 insertions, 0 deletions
diff --git a/test/test_helper.rb b/test/test_helper.rb
index ac8e809..b1e903d 100644
--- a/test/test_helper.rb
+++ b/test/test_helper.rb
@@ -9,3 +9,4 @@ end
require "codeclimate-test-reporter"
CodeClimate::TestReporter.start
+require "minitest/autorun"