2012-07-23 16:37:44 +02:00
|
|
|
# encoding: utf-8
|
|
|
|
|
2012-07-31 00:48:04 +02:00
|
|
|
require 'rspec'
|
2012-07-23 16:37:44 +02:00
|
|
|
|
|
|
|
# require spec support files and shared behavior
|
2012-08-20 17:53:41 +02:00
|
|
|
Dir[File.expand_path('../{support,shared}/**/*.rb', __FILE__)].each { |f| require(f) }
|
2012-07-23 16:37:44 +02:00
|
|
|
|
2012-08-14 12:27:56 +02:00
|
|
|
$: << File.join(TestApp.root,'lib')
|
|
|
|
|
2012-08-14 22:45:34 +02:00
|
|
|
require 'test_app'
|
2012-07-26 19:25:23 +02:00
|
|
|
require 'mutant'
|
|
|
|
|
2012-07-31 00:48:04 +02:00
|
|
|
RSpec.configure do |config|
|
2012-08-16 18:02:03 +02:00
|
|
|
config.include(CompressHelper)
|
2012-07-23 16:37:44 +02:00
|
|
|
end
|