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/initializer/boot_test.rb
Carl Lerche 2370e87ae0 Remove all calls to Rails::Initializer from boot.rb
This is starting a refactor of the rails initialization process. The boot.rb file will not remain the same.
2009-09-30 12:05:34 -07:00

16 lines
No EOL
332 B
Ruby

require "isolation/abstract_unit"
module BootTests
class GemBooting < Test::Unit::TestCase
include ActiveSupport::Testing::Isolation
def setup
# build_app
# boot_rails
end
test "booting rails sets the load paths correctly" do
# This test is pending reworking the boot process
end
end
end