diff options
author | Jacob Vosmaer <jacob@gitlab.com> | 2017-04-20 14:51:38 +0200 |
---|---|---|
committer | Jacob Vosmaer <jacob@gitlab.com> | 2017-04-26 16:39:12 +0200 |
commit | b325d4a658bd884d2d10b832032296e9e28bcc24 (patch) | |
tree | 3cee11210c8f7a8e534df247e77049719ffbfe50 /config/routes.rb | |
parent | a9da37434af6d44c5f851affd4bd69b370760e8e (diff) | |
download | gitlab-ce-b325d4a658bd884d2d10b832032296e9e28bcc24.tar.gz |
Add test that asserts unicorns terminate
Diffstat (limited to 'config/routes.rb')
-rw-r--r-- | config/routes.rb | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/config/routes.rb b/config/routes.rb index 1da226a3b57..2584981bb04 100644 --- a/config/routes.rb +++ b/config/routes.rb @@ -99,5 +99,7 @@ Rails.application.routes.draw do end end + draw :test if Rails.env.test? + get '*unmatched_route', to: 'application#route_not_found' end |