summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLukas Reschke <lukas@statuscode.ch>2014-05-13 22:01:11 +0200
committerLukas Reschke <lukas@statuscode.ch>2014-05-13 22:01:11 +0200
commitb0381cfe12689880a63648f66c845de576f93b21 (patch)
treed50517b61b906a285b07e32c94552a9aff3d5080
parentf5bc680f9c725c0aea166f3fc3eee8e0bcf5427c (diff)
downloadnextcloud-server-b0381cfe12689880a63648f66c845de576f93b21.tar.gz
nextcloud-server-b0381cfe12689880a63648f66c845de576f93b21.zip
Add tests for other types that PHP might cast
Addition to https://github.com/owncloud/core/pull/8572
-rw-r--r--tests/lib/files/view.php2
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/lib/files/view.php b/tests/lib/files/view.php
index a51b15857d5..201eb9ff6cb 100644
--- a/tests/lib/files/view.php
+++ b/tests/lib/files/view.php
@@ -598,6 +598,8 @@ class View extends \PHPUnit_Framework_TestCase {
return array(
array('/files/', ''),
array('/files/0', '0'),
+ array('/files/false', 'false'),
+ array('/files/true', 'true'),
array('/files/', '/'),
array('/files/test', 'test'),
array('/files/test', '/test'),