Skip to content

Instantly share code, notes, and snippets.

@gmcgibbon
Created October 27, 2023 21:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save gmcgibbon/23648062f6e5a55436b5df0799525996 to your computer and use it in GitHub Desktop.
Save gmcgibbon/23648062f6e5a55436b5df0799525996 to your computer and use it in GitHub Desktop.
Integration Test with_routing bug
# typed: true
# frozen_string_literal: true
require "bundler/inline"
gemfile(true) do
source "https://rubygems.org"
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
gem "rails", github: "rails/rails", branch: "main"
end
require "action_controller/railtie"
class TestApp < Rails::Application
config.root = __dir__
config.hosts << "www.example.com"
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
include Rails.application.routes.url_helpers
def index
render(plain: "Home")
end
end
require "minitest/autorun"
require "rack/test"
class TestControllerTest < ActionDispatch::IntegrationTest
def test_returns_success
with_routing do |routes|
routes.draw do
get "/test" => "test#index"
end
get("/test")
assert_response(:ok)
end
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