Sha256: fb7bdc88f9a44581d9047ee4f0492b4e44ce90e64060214d6a4665f1099c2823
Contents?: true
Size: 417 Bytes
Versions: 1
Compression:
Stored size: 417 Bytes
Contents
require 'English' $LOAD_PATH.unshift File.expand_path('../lib', __dir__) require 'simplecov' FileUtils.rm_rf('coverage') # Prevent old runs from merging in SimpleCov.command_name(Process.pid.to_s) SimpleCov.start do add_filter '/spec/' end require 'safe_timeout' # Ensure all files get loaded (for coverage sake) Dir[File.expand_path('../lib/**/*.rb', __dir__)].each do |f| require f[%r{lib/(.*)\.rb$}, 1] end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
safe_timeout-1.0.0 | spec/spec_helper.rb |