Sha256: 7f4b9445f90a43ccd061afdd0e36157c31afb4f373d31f15c57bb7acf4d238a8

Contents?: true

Size: 675 Bytes

Versions: 4

Compression:

Stored size: 675 Bytes

Contents

require 'simplecov'
require 'coveralls'
SimpleCov.formatter = Coveralls::SimpleCov::Formatter
SimpleCov.start do
  add_filter '/spec/'
end
# SimpleCov always comes before **anything** else

require_relative '../lib/cert_munger'
require 'awesome_print'
require 'rspec/logging_helper'

RSpec.configure do |config|
  config.run_all_when_everything_filtered = true
  config.filter_run :focus
  config.filter_run_excluding :skip
  config.order = 'random'

  # Configure RSpec to capture log messages for each test. The output from the
  # logs will be stored in the @log_output variable. It is a StringIO instance.
  include RSpec::LoggingHelper
  config.capture_log_messages
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
cert_munger-0.1.1 spec/spec_helper.rb
cert_munger-0.1.0 spec/spec_helper.rb
cert_munger-0.0.2 spec/spec_helper.rb
cert_munger-0.0.1 spec/spec_helper.rb