diff options
author | Dan Bernardic <dan.bernardic@gmail.com> | 2015-01-11 04:11:01 +0100 |
---|---|---|
committer | Dan Bernardic <dan.bernardic@gmail.com> | 2015-01-11 04:11:01 +0100 |
commit | 168ba6c18ca68248d16184c2518666bc19b6d2fb (patch) | |
tree | a42b971641660b8eb073ba89f2699e1c5cb18976 /tests/mocks/ci_testcase.php | |
parent | 6e3d68e381f011614f3b78eb755f62951078e327 (diff) |
Added a unit test for #3464
Signed-off-by: Dan Bernardic <dan.bernardic@gmail.com>
Diffstat (limited to 'tests/mocks/ci_testcase.php')
-rw-r--r-- | tests/mocks/ci_testcase.php | 13 |
1 files changed, 9 insertions, 4 deletions
diff --git a/tests/mocks/ci_testcase.php b/tests/mocks/ci_testcase.php index ad4fe5ac3..a2c37b92e 100644 --- a/tests/mocks/ci_testcase.php +++ b/tests/mocks/ci_testcase.php @@ -274,14 +274,14 @@ class CI_TestCase extends PHPUnit_Framework_TestCase { * @param string Path from base directory * @return bool TRUE on success, otherwise FALSE */ - public function ci_vfs_clone($path) + public function ci_vfs_clone($path, $dest='') { // Check for array if (is_array($path)) { foreach ($path as $file) { - $this->ci_vfs_clone($file); + $this->ci_vfs_clone($file, $dest); } return; } @@ -294,7 +294,12 @@ class CI_TestCase extends PHPUnit_Framework_TestCase { return FALSE; } - $this->ci_vfs_create(basename($path), $content, NULL, dirname($path)); + if (empty($dest)) + { + $dest = dirname($path); + } + + $this->ci_vfs_create(basename($path), $content, NULL, $dest); return TRUE; } @@ -378,4 +383,4 @@ class CI_TestCase extends PHPUnit_Framework_TestCase { } } -}
\ No newline at end of file +} |