9 lines
273 B
Ruby
9 lines
273 B
Ruby
require 'chefspec'
|
|
require 'chefspec/berkshelf'
|
|
|
|
RSpec.configure do |config|
|
|
config.color = true # Use color in STDOUT
|
|
config.formatter = :documentation # Use the specified formatter
|
|
config.log_level = :error # Avoid deprecation notice SPAM
|
|
end
|