Add test/doc for reverse Folder::inPath()

This commit is contained in:
Kyle Robinson Young 2012-03-27 11:55:13 -07:00
parent 6ad3bd451e
commit deb5a57cb9
2 changed files with 4 additions and 1 deletions

View file

@ -122,6 +122,9 @@ class FolderTest extends CakeTestCase {
$result = $Folder->inPath(DS . 'non-existing' . $inside); $result = $Folder->inPath(DS . 'non-existing' . $inside);
$this->assertFalse($result); $this->assertFalse($result);
$result = $Folder->inPath($path . DS . 'Model', true);
$this->assertTrue($result);
} }
/** /**

View file

@ -322,7 +322,7 @@ class Folder {
* Returns true if the File is in given path. * Returns true if the File is in given path.
* *
* @param string $path The path to check that the current pwd() resides with in. * @param string $path The path to check that the current pwd() resides with in.
* @param boolean $reverse * @param boolean $reverse Reverse the search, check that pwd() resides within $path.
* @return boolean * @return boolean
* @link http://book.cakephp.org/2.0/en/core-utility-libraries/file-folder.html#Folder::inPath * @link http://book.cakephp.org/2.0/en/core-utility-libraries/file-folder.html#Folder::inPath
*/ */