Skip to content

Instantly share code, notes, and snippets.

@alexcameron89
Created February 13, 2019 21:38
Show Gist options
  • Save alexcameron89/5aa96cc5ef4229df31f0afc9cc8a2af5 to your computer and use it in GitHub Desktop.
Save alexcameron89/5aa96cc5ef4229df31f0afc9cc8a2af5 to your computer and use it in GitHub Desktop.
# frozen_string_literal: true
require "bundler/inline"
gemfile(true) do
source "https://rubygems.org"
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
# Activate the gem you are reporting the issue against.
gem "rails", "5.2.0"
end
require "rack/test"
require "action_controller/railtie"
class TestApp < Rails::Application
config.root = __dir__
config.session_store :cookie_store, key: "cookie_store_key"
secrets.secret_key_base = "secret_key_base"
config.logger = Logger.new($stdout)
Rails.logger = config.logger
routes.draw do
get "/" => "test#index"
end
end
class Banana
end
class TestController < ActionController::Base
include Rails.application.routes.url_helpers
def index
puts "#" * 90
puts instance
puts "#" * 90
render plain: "Home"
end
def instance
@a ||= Banana.new
end
end
require "minitest/autorun"
class BugTest < Minitest::Test
include Rack::Test::Methods
def test_returns_success
get "/"
get "/"
assert last_response.ok?
end
private
def app
Rails.application
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment