free_mutant/spec/spec_helper.rb
Markus Schirp 459d028de1 Add a working mutation tester for mutant
* Expand attr_reader :name, to def name; @name; end
  As attr_reader defined methods do not have a valid source location.
* Expose more internal state to allow the generation of nice match
  identifications. Needs to be cleaned up.
2012-08-20 17:53:41 +02:00

15 lines
312 B
Ruby

# encoding: utf-8
require 'rspec'
# require spec support files and shared behavior
Dir[File.expand_path('../{support,shared}/**/*.rb', __FILE__)].each { |f| require(f) }
$: << File.join(TestApp.root,'lib')
require 'test_app'
require 'mutant'
RSpec.configure do |config|
config.include(CompressHelper)
end