Sha256: 0b8fc9185e17d9ed2e7a7e9f272449dbe5d4db7895c53347cd921993cdc0e38a

Contents?: true

Size: 571 Bytes

Versions: 1

Compression:

Stored size: 571 Bytes

Contents

if ENV['COVERAGE'] != 'false'
  require 'simplecov'
  require 'coveralls'
  SimpleCov.formatter = SimpleCov::Formatter::MultiFormatter[
    SimpleCov::Formatter::HTMLFormatter,
    Coveralls::SimpleCov::Formatter
  ]
  SimpleCov.start

  # Normally classes are lazily loaded, so any class without a test
  # is missing from the report.  This ensures they show up so we can
  # see uncovered methods.
  require 'vagrant'
  Dir["lib/**/*.rb"].each do|file|
    require_string = file.match(/lib\/(.*)\.rb/)[1]
    require require_string
  end
end

require 'fog/profitbricks'

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
vagrant-profitbricks-1.0.0 spec/spec_helper.rb