diff options
author | Robin Appelman <icewind@owncloud.com> | 2015-01-21 17:18:47 +0100 |
---|---|---|
committer | Robin Appelman <icewind@owncloud.com> | 2015-01-21 17:18:47 +0100 |
commit | 0b9f7642a61d440764f96f4abbc174f175610e09 (patch) | |
tree | 8e9135d58d832d0b20199d0389e152afa8003bd0 | |
parent | 04075eba6b83a71a9af17bc2cfcbdcfe31a76af2 (diff) | |
download | nextcloud-server-0b9f7642a61d440764f96f4abbc174f175610e09.tar.gz nextcloud-server-0b9f7642a61d440764f96f4abbc174f175610e09.zip |
Add unit test
-rw-r--r-- | tests/lib/request.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/lib/request.php b/tests/lib/request.php index ea3722b90a6..dd6d1e47cd5 100644 --- a/tests/lib/request.php +++ b/tests/lib/request.php @@ -84,6 +84,7 @@ class Test_Request extends \Test\TestCase { array('/core/ajax/translations.php', '/core/ajax/translations.php', 'index.php'), array('/core/ajax/translations.php', '//core/ajax/translations.php', '/index.php'), array('/core/ajax/translations.php', '/oc/core/ajax/translations.php', '/oc/index.php'), + array('/core/ajax/translations.php', '/oc//index.php/core/ajax/translations.php', '/oc/index.php'), array('/1', '/oc/core/1', '/oc/core/index.php'), ); } |