mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
36cf67e8e5
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@6276 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
17 lines
458 B
Ruby
17 lines
458 B
Ruby
$:.unshift File.dirname(__FILE__) + "/../../activesupport/lib"
|
|
$:.unshift File.dirname(__FILE__) + "/../../actionpack/lib"
|
|
$:.unshift File.dirname(__FILE__) + "/../lib"
|
|
$:.unshift File.dirname(__FILE__) + "/../builtin/rails_info"
|
|
|
|
require 'test/unit'
|
|
require 'active_support'
|
|
|
|
if defined?(RAILS_ROOT)
|
|
RAILS_ROOT.replace File.dirname(__FILE__)
|
|
else
|
|
RAILS_ROOT = File.dirname(__FILE__)
|
|
end
|
|
|
|
class Test::Unit::TestCase
|
|
# Add stuff here if you need it
|
|
end
|