summaryrefslogtreecommitdiff
path: root/spec/routing/routing_spec.rb
diff options
context:
space:
mode:
authorHiroyuki Sato <sathiroyuki@gmail.com>2013-09-05 20:46:34 +0900
committerHiroyuki Sato <sathiroyuki@gmail.com>2013-09-13 07:00:24 +0900
commitdf9cbbc924466d2343f399adde0cea7cf2553fdb (patch)
tree1b761d45ff7c4fa756d730ef578e7faaaf5faee7 /spec/routing/routing_spec.rb
parente1ca9de0dabb9d1da13073110072b3327280eb55 (diff)
downloadgitlab-ce-df9cbbc924466d2343f399adde0cea7cf2553fdb.tar.gz
Drop support of root namespace in routing
Diffstat (limited to 'spec/routing/routing_spec.rb')
-rw-r--r--spec/routing/routing_spec.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/routing/routing_spec.rb b/spec/routing/routing_spec.rb
index cc2a141c454..946ef7c28cb 100644
--- a/spec/routing/routing_spec.rb
+++ b/spec/routing/routing_spec.rb
@@ -11,11 +11,11 @@ end
# /:path Grack
describe "Mounted Apps", "routing" do
it "to API" do
- get("/api").should be_routable
+ get("/api/issues").should be_routable
end
it "to Grack" do
- get("/gitlabhq.git").should be_routable
+ get("/gitlab/gitlabhq.git").should be_routable
end
end