Sha256: 6426008e7ed0b336a0f2b919965a7ec08c7f3bfedc58137431348677eabca74d

Contents?: true

Size: 1.27 KB

Versions: 6

Compression:

Stored size: 1.27 KB

Contents

require 'simplecov'

module SimpleCov
  module Configuration
    def clean_filters
      @filters = []
    end
  end
end

SimpleCov.configure do
  clean_filters
  load_profile 'test_frameworks'
end

ENV["COVERAGE"] && SimpleCov.start do
  add_filter "/.rvm/"
end
require 'rubygems'
require 'bundler'
begin
  Bundler.setup(:default, :development)
rescue Bundler::BundlerError => e
  $stderr.puts e.message
  $stderr.puts "Run `bundle install` to install missing gems"
  exit e.status_code
end

$LOAD_PATH.unshift(File.dirname(__FILE__))
$LOAD_PATH.unshift(File.join(File.dirname(__FILE__), '..', 'lib'))
require 'hawkins'
require 'stringio'

module SpecUtils
  # Copied from Minitest.  The Rspec output matcher doesn't work very will with
  # blocks that are throwing exceptions.
  def capture_io
    orig_stdout = $stdout
    captured_stdout = StringIO.new
    $stdout = captured_stdout

    orig_stderr = $stderr
    captured_stderr = StringIO.new
    $stderr = captured_stderr

    yield

    return captured_stdout.string, captured_stderr.string
  ensure
    $stdout = orig_stdout
    $stderr = orig_stderr
  end
end

RSpec.configure do |config|
  config.color = true
  config.expect_with :rspec do |c|
    c.syntax = :expect
  end
  config.formatter = 'Fuubar'
  config.include SpecUtils
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
hawkins-2.0.5 test/spec_helper.rb
hawkins-2.0.4 test/spec_helper.rb
hawkins-2.0.3 test/spec_helper.rb
hawkins-2.0.2 test/spec_helper.rb
hawkins-2.0.1 test/spec_helper.rb
hawkins-2.0.0 test/spec_helper.rb