blob: e638f1afebce6b7420671bee28a7fd0a17e811f9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
# frozen_string_literal: true
require "dispatch/adapter/interface"
require "dispatch/adapter/tester"
RSpec.configure do |config|
config.example_status_persistence_file_path = ".rspec_status"
config.disable_monkey_patching!
config.expect_with :rspec do |c|
c.syntax = :expect
end
end
|