free_mutant/spec/spec_helper.rb
Markus Schirp 8c1fa8dace Add project infrastructure
* This infrastructure, especially the rake tasks should be
  gemified at some point in the future. I copied exactly the same
  bytes many times in the last month.
2012-07-23 16:37:44 +02:00

12 lines
292 B
Ruby

# encoding: utf-8
require 'mutant'
require 'spec'
require 'spec/autorun'
# require spec support files and shared behavior
Dir[File.expand_path('../{support,shared}/**/*.rb', __FILE__)].each { |f| require f }
Spec::Runner.configure do |config|
config.extend Spec::ExampleGroupMethods
end