Sha256: b52027e1e177e7de17a5f119a2b856f0fd4295d97961d4016c8fc1cbb2ca0b27

Contents?: true

Size: 491 Bytes

Versions: 1

Compression:

Stored size: 491 Bytes

Contents

if RUBY_ENGINE == "ruby" &&
   ENV.has_key?("SLOW")
  begin
    require "simplecov"
    SimpleCov.start do
      add_filter "test"
      add_filter "config"
      command_name "MiniTest"
    end
  rescue LoadError
    warn "unable to load SimpleCov"
  end
end

require "thincloud/test"
require 'fantasyhub'

# Requires supporting ruby files with custom matchers and macros, etc,
# in spec/support/ and its subdirectories.
Dir[File.join("./test/support/**/*.rb")].sort.each { |f| require f }

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
fantasyhub-1.0.1 test/minitest_helper.rb