Sha256: f7e374d44ea8358cdee1df84dda3bca1ca41cd2981aeeb3922200e8270503e3a
Contents?: true
Size: 641 Bytes
Versions: 38
Compression:
Stored size: 641 Bytes
Contents
# frozen_string_literal: true require "vcr" VCR.configure do |c| c.cassette_library_dir = "spec/vcr_cassetes" c.hook_into :webmock end require "simplecov" SimpleCov.start do add_filter "/spec/" end require "fileutils" require "bundler/setup" require "relaton" require "rspec/matchers" require "equivalent-xml" RSpec.configure do |config| # Enable flags like --only-failures and --next-failure config.example_status_persistence_file_path = ".rspec_status" # Disable RSpec exposing methods globally on `Module` and `main` config.disable_monkey_patching! config.expect_with :rspec do |c| c.syntax = :expect end end
Version data entries
38 entries across 38 versions & 2 rubygems