class Shoulda::Matchers::ActionController::RouteMatcher

def add_port_to_path(path, port)

def add_port_to_path(path, port)
  if port
    "https://example.com:#{port}" + path
  else
    path
  end
end