From b0381cfe12689880a63648f66c845de576f93b21 Mon Sep 17 00:00:00 2001 From: Lukas Reschke Date: Tue, 13 May 2014 22:01:11 +0200 Subject: [PATCH] Add tests for other types that PHP might cast Addition to https://github.com/owncloud/core/pull/8572 --- tests/lib/files/view.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/lib/files/view.php b/tests/lib/files/view.php index a51b15857d..201eb9ff6c 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'),