diff options
Diffstat (limited to 'tests')
-rwxr-xr-x | tests/it.t | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -463,9 +463,12 @@ is(it::split("(b)", "aba", ['delim_capture' => true]), ["a", "b", "a"]); is(it::split("b", "aabaa", ['offset_capture' => true]), [["aa", 0], ["aa", 3]]); it::file_put_contents("/tmp/it_test", "aa"); -is(($fh = fopen("/tmp/it_test", "r")) ? fgets($fh) : null, "aa"); +is(($fh = it::fopen("/tmp/it_test", "r")) ? fgets($fh) : null, "aa"); is(it::file_get_contents("/tmp/it_test"), "aa"); is(it::file("/tmp/it_test"), ["aa"]); +ob_start(); +it::readfile("/tmp/it_test"); +is(ob_get_clean(), "aa"); it::file_put("/tmp/it_test", "bb"); is(it::file_get("/tmp/it_test"), "bb"); |