2012-07-23 10:37:44 -04:00
|
|
|
# encoding: utf-8
|
|
|
|
|
2012-07-30 18:48:04 -04:00
|
|
|
require 'rspec'
|
2012-07-23 10:37:44 -04:00
|
|
|
|
|
|
|
# require spec support files and shared behavior
|
|
|
|
Dir[File.expand_path('../{support,shared}/**/*.rb', __FILE__)].each { |f| require f }
|
|
|
|
|
2012-08-14 06:27:56 -04:00
|
|
|
$: << File.join(TestApp.root,'lib')
|
|
|
|
|
2012-08-14 16:45:34 -04:00
|
|
|
require 'test_app'
|
2012-07-26 13:25:23 -04:00
|
|
|
require 'mutant'
|
|
|
|
|
2012-07-30 18:48:04 -04:00
|
|
|
RSpec.configure do |config|
|
2012-07-23 10:37:44 -04:00
|
|
|
end
|