10c3dfc390
* Add tests for all edge cases I could create * Add infrastructure for loading mutations into the vm. * The fun part is next!
12 lines
251 B
Ruby
12 lines
251 B
Ruby
# encoding: utf-8
|
|
|
|
require 'spec'
|
|
require 'spec/autorun'
|
|
|
|
# require spec support files and shared behavior
|
|
Dir[File.expand_path('../{support,shared}/**/*.rb', __FILE__)].each { |f| require f }
|
|
|
|
require 'mutant'
|
|
|
|
Spec::Runner.configure do |config|
|
|
end
|