diff options
author | Andrey Andreev <narf@devilix.net> | 2016-12-01 14:28:41 +0100 |
---|---|---|
committer | Andrey Andreev <narf@devilix.net> | 2016-12-01 14:28:41 +0100 |
commit | 172f949370bb1498789c7d897fdaa4073388ebd5 (patch) | |
tree | 7a8ef83a1d33f61657f704c2026383faf18c07df /tests | |
parent | 41091ba2fd3005d4a387ee17bfd7520475028627 (diff) |
Remove previously deprecated File Helper function read_file()
Diffstat (limited to 'tests')
-rw-r--r-- | tests/codeigniter/helpers/file_helper_test.php | 15 |
1 files changed, 1 insertions, 14 deletions
diff --git a/tests/codeigniter/helpers/file_helper_test.php b/tests/codeigniter/helpers/file_helper_test.php index c31817595..5ed8cb5c0 100644 --- a/tests/codeigniter/helpers/file_helper_test.php +++ b/tests/codeigniter/helpers/file_helper_test.php @@ -14,19 +14,6 @@ class File_helper_Test extends CI_TestCase { // -------------------------------------------------------------------- - public function test_read_file() - { - $this->assertFalse(read_file('does_not_exist')); - - $content = 'Jack and Jill went up the mountain to fight a billy goat.'; - - $file = vfsStream::newFile('my_file.txt')->withContent($content)->at($this->_test_dir); - - $this->assertEquals($content, read_file(vfsStream::url('my_file.txt'))); - } - - // -------------------------------------------------------------------- - public function test_octal_permissions() { $content = 'Jack and Jill went up the mountain to fight a billy goat.'; @@ -144,4 +131,4 @@ class File_helper_Test extends CI_TestCase { $this->assertTrue(write_file(vfsStream::url('write.txt'), $content)); } -}
\ No newline at end of file +} |