aboutsummaryrefslogtreecommitdiffstats
path: root/railties/test/application/initializers/boot_test.rb
blob: 5ec562f12f2db4782b96124e5f2d34e73a7ad595 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
require "isolation/abstract_unit"

module ApplicationTests
  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