free_mutant/spec/spec_helper.rb

31 lines
532 B
Ruby
Raw Normal View History

2013-06-04 16:16:04 -04:00
require 'mutant'
2013-02-24 13:54:41 -05:00
require 'devtools'
Devtools.init_spec_helper
$: << File.join(TestApp.root,'lib')
2012-08-14 16:45:34 -04:00
require 'test_app'
module Fixtures
AST_CACHE = Mutant::Cache.new
end
module ParserHelper
def generate(node)
Unparser.unparse(node)
end
def parse(string)
Parser::CurrentRuby.parse(string)
end
end
RSpec.configure do |config|
2012-08-16 12:02:03 -04:00
config.include(CompressHelper)
config.include(ParserHelper)
2013-06-04 16:16:04 -04:00
config.include(Mutant::NodeHelpers)
2013-07-27 06:34:03 -04:00
config.mock_with :rspec do |rspec|
rspec.syntax = [:expect, :should]
end
end