mirror of
https://github.com/github/rails.git
synced 2026-04-26 03:00:59 -04:00
This is starting a refactor of the rails initialization process. The boot.rb file will not remain the same.
16 lines
332 B
Ruby
16 lines
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 |