free_mutant/spec/spec_helper.rb
Markus Schirp e92ba607eb Fix devtools API & external gem changes
* Followup with devtools 0.1.3 that fixes some behavior to be more strict
* Followup with ast-0.2.2 that changes #inspect
2016-01-24 00:55:00 +00:00

65 lines
1.4 KiB
Ruby

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/meta/*'
add_filter 'lib/mutant/zombifier'
add_filter 'lib/mutant/zombifier/*'
# Trace points shadow each other under 2.0 (fixed in 2.1)
add_filter 'lib/mutant/line_trace.rb' if RUBY_VERSION.eql?('2.0.0')
minimum_coverage 100
end
end
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
module MessageHelper
def message(*arguments)
Mutant::Actor::Message.new(*arguments)
end
end
RSpec.configure do |config|
config.extend(SharedContext)
config.include(CompressHelper)
config.include(MessageHelper)
config.include(ParserHelper)
config.include(Mutant::AST::Sexp)
end