diff options
| author | Adam Malczewski <[email protected]> | 2026-04-28 14:11:16 +0900 |
|---|---|---|
| committer | Adam Malczewski <[email protected]> | 2026-04-28 14:11:16 +0900 |
| commit | 07277435c0688ad9f5fa682633b86b99ef5bb854 (patch) | |
| tree | 3e650e97bcbd229f942330542a333dcad1844542 /spec/spec_helper.rb | |
| download | dispatch-adapter-interface-07277435c0688ad9f5fa682633b86b99ef5bb854.tar.gz dispatch-adapter-interface-07277435c0688ad9f5fa682633b86b99ef5bb854.zip | |
update
Diffstat (limited to 'spec/spec_helper.rb')
| -rw-r--r-- | spec/spec_helper.rb | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/spec/spec_helper.rb b/spec/spec_helper.rb new file mode 100644 index 0000000..8aa8377 --- /dev/null +++ b/spec/spec_helper.rb @@ -0,0 +1,12 @@ +# frozen_string_literal: true + +require "dispatch/adapter/interface" + +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 |
