Sha256: 9c05b5c1dd1ab5d2a18f9643b6997bb68518a4db782f0b46e64db4ca7a298ba1

Contents?: true

Size: 780 Bytes

Versions: 1

Compression:

Stored size: 780 Bytes

Contents

$LOAD_PATH.unshift File.expand_path('../../../lib', __FILE__)

require 'rspec/its'
require 'rspec/core'
require 'vagrant-puppet-install'
require 'datadog/ci'

RSpec.configure do |config|
  config.formatter = :documentation

  # a little syntactic sugar
  config.alias_it_should_behave_like_to :it_has_behavior, 'has behavior:'

  # Use color in STDOUT
  config.color = true

  # Use color not only in STDOUT but also in pagers and files
  config.tty = true

  # run the examples in random order
  config.order = :rand

  # specify metadata with symobls only (ie no '=> true' required)
  config.filter_run focus: true
  config.run_all_when_everything_filtered = true
end

Datadog.configure do |c|
  c.ci_mode.enabled = true
  c.service = 'vagrant-puppet-install'
  c.use :rspec
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
vagrant-puppet-install-7.0.0 test/unit/spec_helper.rb