Sha256: 0dbd2913cc9cb949abb4ab5b2e370ea2e6b7b9682bc7e8e0dcaf6674f8a58512
Contents?: true
Size: 540 Bytes
Versions: 1
Compression:
Stored size: 540 Bytes
Contents
# frozen_string_literal: true require 'simplecov' SimpleCov.profiles.define 'gem' do add_filter '/spec/' end SimpleCov.start 'gem' require 'zyra' require 'pry-nav' support_files = File.expand_path('spec/support/**/*.rb') Dir[support_files].sort.each { |file| require file } RSpec.configure do |config| config.run_all_when_everything_filtered = true config.filter_run :focus config.filter_run_excluding :integration unless ENV['ALL'] config.order = 'random' end RSpec::Matchers.define_negated_matcher :not_change, :change
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
zyra-0.0.1 | spec/spec_helper.rb |