Sha256: 828c610ea9f3ea77771af34254771430c586916bb02946dc7fc3db4cf19a3a1b
Contents?: true
Size: 1.52 KB
Versions: 4
Compression:
Stored size: 1.52 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(Unparser.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.24 | spec/spec_helper.rb |
mutant-0.8.23 | spec/spec_helper.rb |
mutant-0.8.22 | spec/spec_helper.rb |
mutant-0.8.21 | spec/spec_helper.rb |