Sha256: ee9aa47bb86ddac50f4487a222eb9fe5b3d13c47aed1b42ec7b1f77c958bcaa9

Contents?: true

Size: 841 Bytes

Versions: 7

Compression:

Stored size: 841 Bytes

Contents

require 'minitest/spec'
require 'minitest/autorun'
require 'turn'

Turn.config do |c|
  # use one of output formats:
  # :outline  - turn's original case/test outline mode [default]
  # :progress - indicates progress with progress bar
  # :dotted   - test/unit's traditional dot-progress mode
  # :pretty   - new pretty reporter
  # :marshal  - dump output as YAML (normal run mode only)
  # :cue      - interactive testing
  # c.format  = :outline
  # turn on invoke/execute tracing, enable full backtrace
  c.trace   = 20
  # use humanized test names (works only with :outline format)
  c.natural = true
end

if ENV['COVERAGE']
  require 'coveralls'
  require 'simplecov'

  SimpleCov.start do
    add_filter '/spec/'
  end
end

require File.join(File.dirname(__FILE__), '../lib/fog/profitbricks')

if ENV['COVERAGE']
  Coveralls.wear!
end

Version data entries

7 entries across 7 versions & 2 rubygems

Version Path
fog-profitbricks-2.0.1 spec/minitest_helper.rb
vagrant-cloudstack-1.2.0 vendor/bundle/gems/fog-profitbricks-0.0.5/spec/minitest_helper.rb
fog-profitbricks-0.0.5 spec/minitest_helper.rb
fog-profitbricks-0.0.4 spec/minitest_helper.rb
fog-profitbricks-0.0.3 spec/minitest_helper.rb
fog-profitbricks-0.0.2 spec/minitest_helper.rb
fog-profitbricks-0.0.1 spec/minitest_helper.rb