Sha256: a89868abf87a19a3ba9215e2627653307d341f471116016e7dc42f0847f51eab

Contents?: true

Size: 521 Bytes

Versions: 1

Compression:

Stored size: 521 Bytes

Contents

$TESTING = true
$:.push File.join(File.dirname(__FILE__), "..", "lib")

require "mixlib/cli"

class TestCLI
  include Mixlib::CLI
end

RSpec.configure do |config|
  # Use documentation format
  config.formatter = "doc"

  # 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

  config.filter_run focus: true
  config.run_all_when_everything_filtered = true
  config.warnings = true
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
mixlib-cli-2.0.0 spec/spec_helper.rb