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

Version Path
fog-google-1.9.1 test/helpers/test_helper.rb
fog-google-1.9.0 test/helpers/test_helper.rb
fog-google-1.8.2 test/helpers/test_helper.rb
fog-google-1.8.1 test/helpers/test_helper.rb
fog-google-1.8.0 test/helpers/test_helper.rb
fog-google-1.7.1 test/helpers/test_helper.rb
fog-google-1.7.0 test/helpers/test_helper.rb