Sha256: 85ebf5a429b21e8e3d90d4cbc2e3ed0304772e3e6f6271bc28c89a9d0eac4f10

Contents?: true

Size: 1.53 KB

Versions: 4

Compression:

Stored size: 1.53 KB

Contents

# frozen_string_literal: true

if ENV['COVERAGE'] == 'true'
  require 'simplecov'

  SimpleCov.start do
    command_name 'spec:unit'

    add_filter 'config'
    add_filter 'spec'
    add_filter 'vendor'
    add_filter 'test_app'
    add_filter 'lib/mutant.rb' # simplecov bug not seeing default block is executed

    minimum_coverage 100
  end
end

# Require warning support first in order to catch any warnings emitted during boot
require_relative './support/warning'
$stderr = MutantSpec::Warning::EXTRACTOR

require 'tempfile'
require 'concord'
require 'anima'
require 'adamantium'
require 'devtools/spec_helper'
require 'unparser/cli'
require 'mutant'
require 'mutant/meta'

$LOAD_PATH << File.join(TestApp.root, 'lib')

require 'test_app'

module Fixtures
  TEST_CONFIG = Mutant::Config::DEFAULT.with(reporter: Mutant::Reporter::Null.new)
  TEST_ENV    = Mutant::Env::Bootstrap.(TEST_CONFIG)
end # Fixtures

module ParserHelper
  def generate(node)
    Unparser.unparse(node)
  end

  def parse(string)
    Unparser::Preprocessor.run(Parser::CurrentRuby.parse(string))
  end

  def parse_expression(string)
    Mutant::Config::DEFAULT.expression_parser.(string)
  end
end # ParserHelper

module MessageHelper
  def message(*arguments)
    Mutant::Actor::Message.new(*arguments)
  end
end # MessageHelper

RSpec.configure do |config|
  config.extend(SharedContext)
  config.include(MessageHelper)
  config.include(ParserHelper)
  config.include(Mutant::AST::Sexp)

  config.after(:suite) do
    $stderr = STDERR
    MutantSpec::Warning.assert_no_warnings
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
mutant-0.8.20 spec/spec_helper.rb
mutant-0.8.19 spec/spec_helper.rb
mutant-0.8.18 spec/spec_helper.rb
mutant-0.8.17 spec/spec_helper.rb