add help/raketasks to routing spec
This commit is contained in:
parent
db7e0bf88d
commit
f8144bd377
|
@ -33,6 +33,7 @@ end
|
|||
# help_system_hooks GET /help/system_hooks(.:format) help#system_hooks
|
||||
# help_markdown GET /help/markdown(.:format) help#markdown
|
||||
# help_ssh GET /help/ssh(.:format) help#ssh
|
||||
# help_raketasks GET /help/raketasks(.:format) help#raketasks
|
||||
describe HelpController, "routing" do
|
||||
it "to #index" do
|
||||
get("/help").should route_to('help#index')
|
||||
|
@ -65,6 +66,10 @@ describe HelpController, "routing" do
|
|||
it "to #ssh" do
|
||||
get("/help/ssh").should route_to('help#ssh')
|
||||
end
|
||||
|
||||
it "to #raketasks" do
|
||||
get("/help/raketasks").should route_to('help#raketasks')
|
||||
end
|
||||
end
|
||||
|
||||
# errors_githost GET /errors/githost(.:format) errors#githost
|
||||
|
|
Loading…
Reference in a new issue