mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
b549d93d2f
Doesn't make up for the fact that it's slooooooooow, though. Signed-off-by: wycats <wycats@gmail.com>
17 lines
368 B
Ruby
17 lines
368 B
Ruby
require File.expand_path("../../../load_paths", __FILE__)
|
|
|
|
require 'stringio'
|
|
require 'test/unit'
|
|
require 'fileutils'
|
|
|
|
require 'active_support'
|
|
require 'active_support/core_ext/logger'
|
|
|
|
require 'action_controller'
|
|
require 'rails/all'
|
|
|
|
# TODO: Remove these hacks
|
|
class TestApp < Rails::Application
|
|
config.root = File.dirname(__FILE__)
|
|
end
|
|
Rails.application = TestApp
|