2011-02-05 22:32:10 +09:00
|
|
|
$LOAD_PATH.unshift(File.join(File.dirname(__FILE__), '..', 'lib'))
|
|
|
|
$LOAD_PATH.unshift(File.dirname(__FILE__))
|
2012-05-17 22:06:45 +09:00
|
|
|
|
2012-05-23 06:52:50 +09:00
|
|
|
begin
|
|
|
|
require 'rails'
|
|
|
|
rescue LoadError
|
|
|
|
end
|
|
|
|
|
2012-05-17 22:06:45 +09:00
|
|
|
require 'bundler/setup'
|
|
|
|
Bundler.require
|
|
|
|
|
2012-11-26 22:43:59 +09:00
|
|
|
require 'capybara/rspec'
|
2011-04-01 22:27:28 -07:00
|
|
|
require 'database_cleaner'
|
2012-05-20 23:30:19 +09:00
|
|
|
|
|
|
|
# Simulate a gem providing a subclass of ActiveRecord::Base before the Railtie is loaded.
|
|
|
|
require 'fake_gem' if defined? ActiveRecord
|
|
|
|
|
2012-05-23 06:52:50 +09:00
|
|
|
if defined? Rails
|
2012-05-23 12:48:07 +09:00
|
|
|
require 'fake_app/rails_app'
|
2012-05-23 06:52:50 +09:00
|
|
|
|
|
|
|
require 'rspec/rails'
|
|
|
|
end
|
|
|
|
if defined? Sinatra
|
|
|
|
require 'spec_helper_for_sinatra'
|
|
|
|
end
|
2011-02-05 22:54:09 +09:00
|
|
|
|
2011-02-05 22:32:10 +09:00
|
|
|
# Requires supporting files with custom matchers and macros, etc,
|
|
|
|
# in ./support/ and its subdirectories.
|
|
|
|
Dir["#{File.dirname(__FILE__)}/support/**/*.rb"].each {|f| require f}
|
|
|
|
|
|
|
|
RSpec.configure do |config|
|
2011-02-05 22:54:09 +09:00
|
|
|
config.mock_with :rr
|
2011-02-05 22:32:10 +09:00
|
|
|
end
|