Sha256: 50b4eda8c64a8b70f1a5044ca883aa5f214887cb53ae7462e589c4440a267655

Contents?: true

Size: 598 Bytes

Versions: 1

Compression:

Stored size: 598 Bytes

Contents

# -*- ruby -*-
#encoding: utf-8

require 'rspec'

RSpec.configure do |config|
	config.expect_with :rspec do |expectations|
		expectations.include_chain_clauses_in_custom_matcher_descriptions = true
	end

	config.mock_with :rspec do |mocks|
		mocks.verify_partial_doubles = true
	end

	config.shared_context_metadata_behavior = :apply_to_host_groups
	config.filter_run_when_matching :focus
	config.example_status_persistence_file_path = "spec/.status"
	config.disable_monkey_patching!
	config.warnings = true
	config.profile_examples = 10
	config.order = :random

	Kernel.srand( config.seed )
end


Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
rspec-formatter-webkit-2.7.0 spec/spec_helper.rb