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