![Markus Schirp](/assets/img/avatar_default.png)
* 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.
12 lines
292 B
Ruby
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
|