Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/spec
diff options
context:
space:
mode:
authorRiyad Preukschas <riyad@informatik.uni-bremen.de>2012-12-10 17:38:14 +0400
committerRiyad Preukschas <riyad@informatik.uni-bremen.de>2012-12-10 17:38:14 +0400
commit20c8d6e6442e5a339fbb47f844e85c1a739e9939 (patch)
treecd41d67558489afc242c401f55fdfe7bb2eeea48 /spec
parentd476bc01ee1ad164d9a99726a3648125725f2ee5 (diff)
parent3a481777629e3280b48b55deb287dca02ee389e6 (diff)
Merge pull request #2222 from jojosch/add-test-help-raketasks
add help/raketasks to routing spec and search autocomplete
Diffstat (limited to 'spec')
-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