mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
20 lines
387 B
Ruby
20 lines
387 B
Ruby
require "isolation/abstract_unit"
|
|
|
|
module ApplicationTests
|
|
class GemBooting < Test::Unit::TestCase
|
|
include ActiveSupport::Testing::Isolation
|
|
|
|
def setup
|
|
# build_app
|
|
# boot_rails
|
|
end
|
|
|
|
def teardown
|
|
# teardown_app
|
|
end
|
|
|
|
test "booting rails sets the load paths correctly" do
|
|
# This test is pending reworking the boot process
|
|
end
|
|
end
|
|
end
|