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:
authorDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2013-05-08 15:18:16 +0400
committerDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2013-05-08 15:18:16 +0400
commit8688789353e1b6c3b4c6ed0eb410797092f1331b (patch)
tree10486313ae2035dee1731875d04a030355b8d0db /spec
parenta87f5c60a4552b8be5f7d5f9de3b4cda20ec648a (diff)
parent439cd3ebd3613825fc426238770f522a9401d51e (diff)
Merge pull request #3834 from ichord/gfm-autocomp
improve gfm autocomplete
Diffstat (limited to 'spec')
-rw-r--r--spec/routing/project_routing_spec.rb4
1 files changed, 4 insertions, 0 deletions
diff --git a/spec/routing/project_routing_spec.rb b/spec/routing/project_routing_spec.rb
index 613c4565755..f20a1ca51a4 100644
--- a/spec/routing/project_routing_spec.rb
+++ b/spec/routing/project_routing_spec.rb
@@ -83,6 +83,10 @@ describe ProjectsController, "routing" do
get("/gitlabhq/edit").should route_to('projects#edit', id: 'gitlabhq')
end
+ it "to #autocomplete_sources" do
+ get('/gitlabhq/autocomplete_sources').should route_to('projects#autocomplete_sources', id: "gitlabhq")
+ end
+
it "to #show" do
get("/gitlabhq").should route_to('projects#show', id: 'gitlabhq')
end