Sha256: 44348fd84e79ca46490bcdc1a32fc4330893911b47578a59214885fccb9c0a3c
Contents?: true
Size: 452 Bytes
Versions: 11
Compression:
Stored size: 452 Bytes
Contents
#! /usr/bin/env/ruby # frozen_string_literal: true require 'simplecov' SimpleCov.formatter = SimpleCov::Formatter::MultiFormatter.new([ SimpleCov::Formatter::HTMLFormatter ]) SimpleCov.minimum_coverage 90 SimpleCov.start require 'minitest' old_dir = Dir.pwd Dir.chdir './test' files = Dir.glob('**/*_test.rb').map { |f| File.expand_path f } Dir.chdir old_dir files.each { |f| require f } success = Minitest.run ['-vp'] exit 1 unless success
Version data entries
11 entries across 11 versions & 1 rubygems