aboutsummaryrefslogtreecommitdiffstats
path: root/railties/test/initializer/boot_test.rb
blob: 5ee3c45b214b812270d5b3724bee9053d0f11ca8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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