aboutsummaryrefslogtreecommitdiffstats
path: root/railties/test/abstract_unit.rb
blob: d04a2aa1f3d16aa65cfc25dea905f2217d3c5af6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
ORIG_ARGV = ARGV.dup

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