summaryrefslogtreecommitdiff
path: root/spec/routing
diff options
context:
space:
mode:
authorJohannes Schleifenbaum <johannes@js-webcoding.de>2012-12-08 11:42:38 +0100
committerJohannes Schleifenbaum <johannes@js-webcoding.de>2012-12-08 11:42:38 +0100
commitf8144bd37766fbd815ccc6d7de6b48f17d3fbf65 (patch)
tree60d43b33220979be7387b347593a7b8e9b9b8a97 /spec/routing
parentdb7e0bf88d0d77b187a4dcf58e49d252be554568 (diff)
downloadgitlab-ce-f8144bd37766fbd815ccc6d7de6b48f17d3fbf65.tar.gz
add help/raketasks to routing spec
Diffstat (limited to 'spec/routing')
-rw-r--r--spec/routing/routing_spec.rb5
1 files changed, 5 insertions, 0 deletions
diff --git a/spec/routing/routing_spec.rb b/spec/routing/routing_spec.rb
index 988063db4b0..57fd70e7497 100644
--- a/spec/routing/routing_spec.rb
+++ b/spec/routing/routing_spec.rb
@@ -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