Sha256: ec977047bc79ea083af4ce19879fec72ee54f652752a6ced7992d52e1553b0e8
Contents?: true
Size: 840 Bytes
Versions: 3
Compression:
Stored size: 840 Bytes
Contents
# frozen_string_literal: true require "bundler/setup" require "fileutils" require "rspec/matchers" require "equivalent-xml" require "simplecov" require "vcr" VCR.configure do |c| c.cassette_library_dir = "spec/vcr_cassetes" c.default_cassette_options = { clean_outdated_http_interactions: true, re_record_interval: 7 * 24 * 3600, record: :once, } c.hook_into :webmock end SimpleCov.start do add_filter "/spec/" end require "relaton" Relaton.configure do |config| config.use_api = false end 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
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
relaton-1.8.pre4 | spec/spec_helper.rb |
relaton-1.8.pre3 | spec/spec_helper.rb |
relaton-1.8.pre2 | spec/spec_helper.rb |