Commit c1551c6e authored by Marin Jankovski's avatar Marin Jankovski

Fix routing tests.

parent f79a3004
......@@ -79,35 +79,35 @@ describe HelpController, "routing" do
end
it "to #permissions" do
get("/help/permissions").should route_to('help#permissions')
get("/help/permissions/permissions").should route_to('help#show', category: "permissions", file: "permissions")
end
it "to #workflow" do
get("/help/workflow").should route_to('help#workflow')
get("/help/workflow/README").should route_to('help#show', category: "workflow", file: "README")
end
it "to #api" do
get("/help/api").should route_to('help#api')
get("/help/api/README").should route_to('help#show', category: "api", file: "README")
end
it "to #web_hooks" do
get("/help/web_hooks").should route_to('help#web_hooks')
get("/help/web_hooks/web_hooks").should route_to('help#show', category: "web_hooks", file: "web_hooks")
end
it "to #system_hooks" do
get("/help/system_hooks").should route_to('help#system_hooks')
get("/help/system_hooks/system_hooks").should route_to('help#show', category: "system_hooks", file: "system_hooks")
end
it "to #markdown" do
get("/help/markdown").should route_to('help#markdown')
get("/help/markdown/markdown").should route_to('help#show',category: "markdown", file: "markdown")
end
it "to #ssh" do
get("/help/ssh").should route_to('help#ssh')
get("/help/ssh/README").should route_to('help#show', category: "ssh", file: "README")
end
it "to #raketasks" do
get("/help/raketasks").should route_to('help#raketasks')
get("/help/raketasks/README").should route_to('help#show', category: "raketasks", file: "README")
end
end
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment