Sha256: ea331c52aa351d192077de584c3f2bededb3560f54523bbce55d7d93c72f8a8b

Contents?: true

Size: 634 Bytes

Versions: 2

Compression:

Stored size: 634 Bytes

Contents

require 'simplecov'
require 'coveralls'

SimpleCov.formatter = SimpleCov::Formatter::MultiFormatter[
  SimpleCov::Formatter::HTMLFormatter,
  Coveralls::SimpleCov::Formatter
]
SimpleCov.start do
  add_filter 'spec'
end

require 'pry'
require 'whos_dated_who'

Dir[File.expand_path('..', __FILE__) + '/support/**/*.rb'].each do |f|
  require(f)
end

RSpec.configure do |config|
  config.filter_run :focus
  config.run_all_when_everything_filtered = true

  config.default_formatter = 'doc' if config.files_to_run.one?

  config.profile_examples = 10 if ENV['PROFILE_EXAMPLES']

  config.order = :random

  Kernel.srand config.seed
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
whos_dated_who-1.0.2 spec/spec_helper.rb
whos_dated_who-1.0.1 spec/spec_helper.rb