spec/spec_helper.rb in lita-whois-0.1.0 vs spec/spec_helper.rb in lita-whois-1.1.0

- old
+ new

@@ -6,5 +6,26 @@ ] SimpleCov.start { add_filter '/spec/' } require 'lita-whois' require 'lita/rspec' + +Lita.version_3_compatibility_mode = false + +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.filter_run :focus + config.run_all_when_everything_filtered = true + config.default_formatter = 'doc' if config.files_to_run.one? + config.order = :random + config.color = true + config.profile_examples = 5 + + Kernel.srand config.seed +end