mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
8e1dca10cd
Since isolation application is generated with the `--skip-gemfile` option, so `active_storage:install` is not executed.
44 lines
941 B
Ruby
44 lines
941 B
Ruby
# frozen_string_literal: true
|
|
|
|
require "isolation/abstract_unit"
|
|
|
|
module ApplicationTests
|
|
class RackupTest < ActiveSupport::TestCase
|
|
include ActiveSupport::Testing::Isolation
|
|
|
|
def rackup
|
|
require "rack"
|
|
app, _ = Rack::Builder.parse_file("#{app_path}/config.ru")
|
|
app
|
|
end
|
|
|
|
def setup
|
|
build_app
|
|
end
|
|
|
|
def teardown
|
|
teardown_app
|
|
end
|
|
|
|
test "Rails app is present" do
|
|
assert File.exist?(app_path("config"))
|
|
end
|
|
|
|
test "config.ru can be racked up" do
|
|
Dir.chdir app_path do
|
|
@app = rackup
|
|
assert_welcome get("/")
|
|
end
|
|
end
|
|
|
|
test "Rails.application is available after config.ru has been racked up" do
|
|
rackup
|
|
assert_kind_of Rails::Application, Rails.application
|
|
end
|
|
|
|
test "the config object is available on the application object" do
|
|
rackup
|
|
assert_equal "UTC", Rails.application.config.time_zone
|
|
end
|
|
end
|
|
end
|