aboutsummaryrefslogtreecommitdiffstats
path: root/railties/test/application/initializers/boot_test.rb
blob: b1e01dc13ff2637aa8f241acd141fbfb72f20665 (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 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