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

module ApplicationTests
  class BootTest < ActiveSupport::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