Sha256: ca02a9059b18211788174d8d3216d9a14706d7bbc2375f03e5e22640a95c13f8
Contents?: true
Size: 525 Bytes
Versions: 8
Compression:
Stored size: 525 Bytes
Contents
# frozen_string_literal: true RSpec.configure do |config| config.order = "random" config.filter_run focus: true config.disable_monkey_patching! config.run_all_when_everything_filtered = true config.example_status_persistence_file_path = "./tmp/rspec-status.txt" config.mock_with :rspec do |mocks| mocks.verify_partial_doubles = true end config.expect_with :rspec do |expectations| expectations.syntax = :expect expectations.include_chain_clauses_in_custom_matcher_descriptions = true end end
Version data entries
8 entries across 8 versions & 1 rubygems