3scale/porta

View on GitHub
features/support/helpers/backend_helpers.rb

Summary

Maintainability
A
0 mins
Test Coverage
module BackendHelpers
  def backend_url(path)
    "http://#{BackendClient::Connection::DEFAULT_HOST}#{path}"
  end

  def fake_status(code)
    [code.to_i, Rack::Utils::HTTP_STATUS_CODES[code.to_i]]
  end
end