diff options
author | Hiroyuki Sato <sathiroyuki@gmail.com> | 2013-09-05 20:46:34 +0900 |
---|---|---|
committer | Hiroyuki Sato <sathiroyuki@gmail.com> | 2013-09-13 07:00:24 +0900 |
commit | df9cbbc924466d2343f399adde0cea7cf2553fdb (patch) | |
tree | 1b761d45ff7c4fa756d730ef578e7faaaf5faee7 /spec/routing/routing_spec.rb | |
parent | e1ca9de0dabb9d1da13073110072b3327280eb55 (diff) | |
download | gitlab-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.rb | 4 |
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 |