Sha256: cb4ab2f596e78370098110428353936c12d9924a71d9b170f702828b57ce5af5
Contents?: true
Size: 1.48 KB
Versions: 22
Compression:
Stored size: 1.48 KB
Contents
# frozen_string_literal: true require "spec_helper" describe "Default routes" do it "GET /oauth/authorize routes to authorizations controller" do expect(get("/oauth/authorize")).to route_to("doorkeeper/authorizations#new") end it "POST /oauth/authorize routes to authorizations controller" do expect(post("/oauth/authorize")).to route_to("doorkeeper/authorizations#create") end it "DELETE /oauth/authorize routes to authorizations controller" do expect(delete("/oauth/authorize")).to route_to("doorkeeper/authorizations#destroy") end it "POST /oauth/token routes to tokens controller" do expect(post("/oauth/token")).to route_to("doorkeeper/tokens#create") end it "POST /oauth/revoke routes to tokens controller" do expect(post("/oauth/revoke")).to route_to("doorkeeper/tokens#revoke") end it "POST /oauth/introspect routes to tokens controller" do expect(post("/oauth/introspect")).to route_to("doorkeeper/tokens#introspect") end it "GET /oauth/applications routes to applications controller" do expect(get("/oauth/applications")).to route_to("doorkeeper/applications#index") end it "GET /oauth/authorized_applications routes to authorized applications controller" do expect(get("/oauth/authorized_applications")).to route_to("doorkeeper/authorized_applications#index") end it "GET /oauth/token/info route to authorized TokenInfo controller" do expect(get("/oauth/token/info")).to route_to("doorkeeper/token_info#show") end end
Version data entries
22 entries across 22 versions & 3 rubygems