Skip to content

Instantly share code, notes, and snippets.

@bogdan
Created May 24, 2021 16:04
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save bogdan/935fc4dbd6ba723cf3e8a6d3ede56106 to your computer and use it in GitHub Desktop.
Save bogdan/935fc4dbd6ba723cf3e8a6d3ede56106 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" }
gem "rails"#, github: "rails/rails", branch: "main"
end
require "action_controller/railtie"
class TestApp < Rails::Application
config.root = __dir__
config.hosts << "example.org"
secrets.secret_key_base = "secret_key_base"
config.logger = Logger.new($stdout)
Rails.logger = config.logger
routes.draw do
get "(/optional/:optional_id)/things" => "foo#foo", as: :things
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 BugTest < Minitest::Test
include Rack::Test::Methods
def test_returns_success
assert_equal "/things", app.routes.url_helpers.things_path(optional_id: false)
assert_equal "/things", app.routes.url_helpers.things_path(false)
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