Sha256: f7583966c182474763ae0fd736e92de2a5fca21f225a3a585aca987933e0c86d
Contents?: true
Size: 537 Bytes
Versions: 1
Compression:
Stored size: 537 Bytes
Contents
require 'simplecov' SimpleCov.profiles.define 'gem' do add_filter '/spec/' end SimpleCov.start 'gem' require 'tarquinn' require 'pry-nav' support_files = File.expand_path('spec/support/**/*.rb') Dir[support_files].each { |file| require file } RSpec.configure do |config| config.treat_symbols_as_metadata_keys_with_true_values = true config.run_all_when_everything_filtered = true config.filter_run :focus config.filter_run_excluding :integration unless ENV['ALL'] config.order = 'random' config.before do end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
tarquinn-0.2.0 | spec/spec_helper.rb |