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

Version Path
tfw-0.1.19 exe/tfw-test
tfw-0.1.18 exe/tfw-test
tfw-0.1.17 exe/tfw-test
tfw-0.1.16 exe/tfw-test
tfw-0.1.15 exe/tfw-test
tfw-0.1.14 exe/tfw-test
tfw-0.1.13 exe/tfw-test
tfw-0.1.12 exe/tfw-test
tfw-0.1.11 exe/tfw-test
tfw-0.1.10 exe/tfw-test
tfw-0.1.9 exe/tfw-test