Sha256: 98330eca60315c8db919887de4aaccc312200c623cc2732e9150ef8490e7d5e9
Contents?: true
Size: 670 Bytes
Versions: 7
Compression:
Stored size: 670 Bytes
Contents
# Configure simplecov for coverage tests # Note: needs to be done _before_ requiring minitest! if ENV["COVERAGE"] require "simplecov" require 'codecov' SimpleCov.formatter = SimpleCov::Formatter::Codecov SimpleCov.start do add_filter "/test/" end end # The next line was added to squelch a warning message in Ruby 1.9. # It ensures we're using the gem, not the built-in Minitest # See https://github.com/seattlerb/minitest/#install gem "minitest" require "minitest/autorun" # Custom formatters require "minitest/reporters" Minitest::Reporters.use! Minitest::Reporters::SpecReporter.new require File.join(File.dirname(__FILE__), "../../lib/fog/google")
Version data entries
7 entries across 7 versions & 1 rubygems