2017-08-13 09:02:48 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2018-10-28 13:12:48 -04:00
|
|
|
require "bundler/inline"
|
2013-08-21 16:09:06 -04:00
|
|
|
|
2015-06-03 23:02:25 -04:00
|
|
|
gemfile(true) do
|
2016-08-06 13:21:59 -04:00
|
|
|
source "https://rubygems.org"
|
2017-09-27 04:55:43 -04:00
|
|
|
|
2017-09-26 17:02:11 -04:00
|
|
|
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
|
2017-09-27 04:55:43 -04:00
|
|
|
|
2016-08-06 13:21:59 -04:00
|
|
|
gem "rails", github: "rails/rails"
|
2015-06-03 23:02:25 -04:00
|
|
|
end
|
2013-08-21 16:09:06 -04:00
|
|
|
|
2016-08-06 13:21:59 -04:00
|
|
|
require "action_controller/railtie"
|
2013-08-21 16:09:06 -04:00
|
|
|
|
|
|
|
class TestApp < Rails::Application
|
2017-05-15 10:17:28 -04:00
|
|
|
config.root = __dir__
|
2018-12-24 18:39:41 -05:00
|
|
|
config.hosts << "example.org"
|
2016-08-06 13:21:59 -04:00
|
|
|
secrets.secret_key_base = "secret_key_base"
|
2013-08-21 16:09:06 -04:00
|
|
|
|
|
|
|
config.logger = Logger.new($stdout)
|
|
|
|
Rails.logger = config.logger
|
|
|
|
|
|
|
|
routes.draw do
|
2016-08-06 13:21:59 -04:00
|
|
|
get "/" => "test#index"
|
2013-08-21 16:09:06 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
class TestController < ActionController::Base
|
2013-11-11 09:46:58 -05:00
|
|
|
include Rails.application.routes.url_helpers
|
|
|
|
|
2013-08-21 16:09:06 -04:00
|
|
|
def index
|
2016-08-06 13:21:59 -04:00
|
|
|
render plain: "Home"
|
2013-08-21 16:09:06 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2016-08-06 13:21:59 -04:00
|
|
|
require "minitest/autorun"
|
|
|
|
require "rack/test"
|
2013-08-21 16:09:06 -04:00
|
|
|
|
|
|
|
class BugTest < Minitest::Test
|
|
|
|
include Rack::Test::Methods
|
|
|
|
|
|
|
|
def test_returns_success
|
2016-08-06 13:21:59 -04:00
|
|
|
get "/"
|
2013-08-21 16:09:06 -04:00
|
|
|
assert last_response.ok?
|
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
def app
|
|
|
|
Rails.application
|
|
|
|
end
|
2013-11-01 16:15:53 -04:00
|
|
|
end
|