From e4687b2dc47e1eb1db18ad63548e895f1dc73995 Mon Sep 17 00:00:00 2001 From: Yusuke Ebihara Date: Sat, 19 Nov 2016 12:50:06 +0900 Subject: [PATCH] Fix the bug to show the message when running tests that SimpleCov failed to recognize the test framework and/or suite used. --- tests/helper.rb | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/helper.rb b/tests/helper.rb index ecf1abf0d..1aa467622 100644 --- a/tests/helper.rb +++ b/tests/helper.rb @@ -1,6 +1,7 @@ begin require 'simplecov' SimpleCov.start + SimpleCov.command_name "Shindo" rescue LoadError => e $stderr.puts "not recording test coverage: #{e.inspect}" end