Skip to content

Instantly share code, notes, and snippets.

@WaKeMaTTa
Created February 9, 2022 13:30
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 WaKeMaTTa/365a79c969a959cf944fa7cf49d00973 to your computer and use it in GitHub Desktop.
Save WaKeMaTTa/365a79c969a959cf944fa7cf49d00973 to your computer and use it in GitHub Desktop.
Rails 7 - with_options trailing_slash: true
# 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", "~> 7.0.0"
end
require "rack/test"
require "action_controller/railtie"
class TestApp < Rails::Application
config.root = __dir__
config.hosts << "example.org"
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
with_options trailing_slash: true do
get '/test/' => "test#index", as: :test
end
end
end
class TestController < ActionController::Base
include Rails.application.routes.url_helpers
def index
render plain: "Home"
end
end
require "minitest/autorun"
class BugTest < Minitest::Test
include Rack::Test::Methods
def test_returns_success
path = app.routes.url_helpers.test_path
assert_equal "/test/", path
get path
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