Sha256: 34f0c5e9c0071e3219fc96d48492d50ebebb3667e368b3b28680cdb25545ea5b
Contents?: true
Size: 599 Bytes
Versions: 8
Compression:
Stored size: 599 Bytes
Contents
require "bundler/setup" require "fontist" Dir["./spec/support/**/*.rb"].sort.each { |file| require file } RSpec.configure do |config| # Enable flags like --only-failures and --next-failure config.example_status_persistence_file_path = ".rspec_status" config.include Fontist::Helper # Disable RSpec exposing methods globally on `Module` and `main` config.disable_monkey_patching! # Skip the slow tests locally unless ENV.fetch("TEST_ENV", "local").upcase === "CI" config.filter_run_excluding slow: true end config.expect_with :rspec do |c| c.syntax = :expect end end
Version data entries
8 entries across 7 versions & 2 rubygems