2013-08-21 16:09:06 -04:00
|
|
|
# Activate the gem you are reporting the issue against.
|
|
|
|
gem 'rails', '4.0.0'
|
|
|
|
|
|
|
|
require 'rails'
|
|
|
|
require 'action_controller/railtie'
|
|
|
|
|
|
|
|
class TestApp < Rails::Application
|
|
|
|
config.root = File.dirname(__FILE__)
|
|
|
|
config.session_store :cookie_store, key: 'cookie_store_key'
|
|
|
|
config.secret_token = 'secret_token'
|
|
|
|
config.secret_key_base = 'secret_key_base'
|
|
|
|
|
|
|
|
config.logger = Logger.new($stdout)
|
|
|
|
Rails.logger = config.logger
|
|
|
|
|
|
|
|
routes.draw do
|
|
|
|
get '/' => 'test#index'
|
|
|
|
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
|
|
|
|
render text: 'Home'
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
require 'minitest/autorun'
|
|
|
|
require 'rack/test'
|
|
|
|
|
|
|
|
class BugTest < MiniTest::Unit::TestCase
|
|
|
|
include Rack::Test::Methods
|
|
|
|
|
|
|
|
def test_returns_success
|
|
|
|
get '/'
|
|
|
|
assert last_response.ok?
|
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
def app
|
|
|
|
Rails.application
|
|
|
|
end
|
|
|
|
end
|