master
 1require "chefspec"
 2require "chefspec/berkshelf"
 3require "ffaker"
 4
 5RSpec.configure do |config|
 6  config.expect_with :rspec do |expectations|
 7    expectations.include_chain_clauses_in_custom_matcher_descriptions = true
 8  end
 9  config.mock_with :rspec do |mocks|
10    mocks.verify_partial_doubles = true
11  end
12  config.filter_run :focus
13  config.run_all_when_everything_filtered = true
14  config.warnings = false
15  config.order = :random
16  Kernel.srand config.seed
17end