main
1# frozen_string_literal: true
2
3require 'bundler/setup'
4require 'examine'
5
6RSpec.configure do |config|
7 # Enable flags like --only-failures and --next-failure
8 config.example_status_persistence_file_path = '.rspec_status'
9
10 # Disable RSpec exposing methods globally on `Module` and `main`
11 config.disable_monkey_patching!
12
13 config.expect_with :rspec do |c|
14 c.syntax = :expect
15 end
16end