Sha256: 7e8905f2c61455e0587e3f7427eb10fed5d9be7ec5d7329ebb403dd7e4f30231
Contents?: true
Size: 1.04 KB
Versions: 20
Compression:
Stored size: 1.04 KB
Contents
require "omniauth-applicaster" require "webmock/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 # These two settings work together to allow you to limit a spec run # to individual examples or groups you care about by tagging them with # `:focus` metadata. When nothing is tagged with `:focus`, all examples # get run. config.filter_run :focus config.run_all_when_everything_filtered = true config.disable_monkey_patching! config.warnings = true if config.files_to_run.one? config.default_formatter = 'doc' end # Print the 10 slowest examples and example groups at the # end of the spec run, to help surface which specs are running # particularly slow. # config.profile_examples = 10 config.order = :random Kernel.srand config.seed Dir[File.join(File.dirname(__FILE__), "support/**/*.rb")] .each { |f| require f } end
Version data entries
20 entries across 20 versions & 1 rubygems