1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00
rails--rails/railties/test/abstract_unit.rb
Nick Sieger b549d93d2f AS::Isolation functional on Windows/JRuby.
Doesn't make up for the fact that it's slooooooooow, though.

Signed-off-by: wycats <wycats@gmail.com>
2010-06-24 09:10:58 -07:00

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