Sha256: 21f1681cd4adf76b67b87ea3f5fef23f41fb5f37c99e7ac8d67f107cc7f9267c
Contents?: true
Size: 644 Bytes
Versions: 24
Compression:
Stored size: 644 Bytes
Contents
require 'rspec' require 'chefspec' require 'chef/sugar' require_relative 'support/shared_examples' RSpec.configure do |config| # Prohibit using the should syntax config.expect_with :rspec do |spec| spec.syntax = :expect end # Focus groups config.filter_run(focus: true) config.run_all_when_everything_filtered = true # Run specs in random order to surface order dependencies. If you find an # order dependency and want to debug it, you can fix the order by providing # the seed, which is printed after each run. # --seed 1234 config.order = 'random' # ChefSpec configuration config.log_level = :fatal end
Version data entries
24 entries across 24 versions & 2 rubygems