mirror of
https://github.com/heartcombo/devise.git
synced 2022-11-09 12:18:31 -05:00
21 lines
No EOL
634 B
Ruby
21 lines
No EOL
634 B
Ruby
ENV["RAILS_ENV"] = "test"
|
|
DEVISE_ORM = (ENV["DEVISE_ORM"] || :active_record).to_sym
|
|
|
|
$:.unshift File.dirname(__FILE__)
|
|
puts "\n==> Devise.orm = #{DEVISE_ORM.inspect}"
|
|
|
|
require "rails_app/config/environment"
|
|
require "rails/test_help"
|
|
require "orm/#{DEVISE_ORM}"
|
|
|
|
I18n.load_path << File.expand_path("../support/locale/en.yml", __FILE__)
|
|
require 'mocha'
|
|
|
|
Webrat.configure do |config|
|
|
config.mode = :rails
|
|
config.open_error_files = false
|
|
end
|
|
|
|
# Add support to load paths so we can overwrite broken webrat setup
|
|
$:.unshift File.expand_path('../support', __FILE__)
|
|
Dir["#{File.dirname(__FILE__)}/support/**/*.rb"].each { |f| require f } |