Sha256: 3322095e2fa02c753220abd6e4bf31ba78faea8881b6fcd7e25505a0c89869e2

Contents?: true

Size: 559 Bytes

Versions: 4

Compression:

Stored size: 559 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'

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
vagrant-rackspace-0.1.10 spec/spec_helper.rb
vagrant-rackspace-0.1.9 spec/spec_helper.rb
vagrant-rackspace-0.1.8 spec/spec_helper.rb
vagrant-rackspace-0.1.7 spec/spec_helper.rb