Sha256: e4d2539a5458fabdbd68f9c9eb5629e86ac9a5e3f8039eac9ff59ccc2242da23
Contents?: true
Size: 378 Bytes
Versions: 1
Compression:
Stored size: 378 Bytes
Contents
# frozen_string_literal: true require 'rspec/its' Dir['./spec/support/**/*'].each { |f| require f } class NullFormatter private def method_missing(method, *args, &block) # ignore end def respond_to_missing?(method, *args, &block) # ignore end end RSpec.configure do |config| config.run_all_when_everything_filtered = true config.order = 'random' end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
rspec-its-2.0.0 | spec/spec_helper.rb |