2014-09-19 09:39:56 -04:00
|
|
|
if ENV['SIMPLECOV']
|
|
|
|
require 'simplecov'
|
|
|
|
end
|
2013-01-05 06:30:42 -05:00
|
|
|
|
2014-09-19 09:39:56 -04:00
|
|
|
if ENV['COVERALLS']
|
2013-03-10 14:26:27 -04:00
|
|
|
require 'coveralls'
|
2014-10-01 04:43:16 -04:00
|
|
|
Coveralls.wear_merged!
|
2013-03-10 14:26:27 -04:00
|
|
|
end
|
|
|
|
|
2012-09-10 03:52:43 -04:00
|
|
|
ENV['RAILS_ENV'] = 'test'
|
|
|
|
require './config/environment'
|
|
|
|
require 'rspec'
|
2013-12-06 10:40:39 -05:00
|
|
|
require 'rspec/expectations'
|
2013-01-09 01:14:05 -05:00
|
|
|
require 'sidekiq/testing/inline'
|
|
|
|
|
2015-04-25 14:20:15 -04:00
|
|
|
require_relative 'capybara'
|
|
|
|
require_relative 'db_cleaner'
|
|
|
|
|
2014-07-31 10:23:40 -04:00
|
|
|
%w(select2_helper test_env repo_helpers).each do |f|
|
2012-09-10 04:51:02 -04:00
|
|
|
require Rails.root.join('spec', 'support', f)
|
|
|
|
end
|
|
|
|
|
2015-04-25 14:20:15 -04:00
|
|
|
Dir["#{Rails.root}/features/steps/shared/*.rb"].each { |file| require file }
|
2012-09-10 11:35:03 -04:00
|
|
|
|
2012-09-10 07:27:11 -04:00
|
|
|
WebMock.allow_net_connect!
|
|
|
|
|
|
|
|
Spinach.hooks.before_run do
|
2015-02-12 13:48:42 -05:00
|
|
|
include RSpec::Mocks::ExampleMethods
|
2014-07-31 12:24:53 -04:00
|
|
|
TestEnv.init(mailer: false)
|
2012-09-10 07:27:11 -04:00
|
|
|
|
2012-09-25 22:34:29 -04:00
|
|
|
include FactoryGirl::Syntax::Methods
|
2012-09-10 07:27:11 -04:00
|
|
|
end
|