From 0551cf39c668f3276e40b50664909cba1850dbcc Mon Sep 17 00:00:00 2001 From: Christian Schneider Date: Thu, 28 Jun 2018 12:12:33 +0200 Subject: Use tempnam() to create tmp file and unlink() for removing, no need to it::system() to delete a file --- test/it.t | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) (limited to 'test') diff --git a/test/it.t b/test/it.t index fe0b45d..fcc68e7 100755 --- a/test/it.t +++ b/test/it.t @@ -462,14 +462,15 @@ is(it::split("b", "abbba", ['no_empty' => true]), ["a", "a"]); 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 = 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"]); +$tmpfile = tempnam("/tmp", "it_test"); +it::file_put_contents($tmpfile, "aa"); +is(($fh = it::fopen($tmpfile, "r")) ? fgets($fh) : null, "aa"); +is(it::file_get_contents($tmpfile), "aa"); +is(it::file($tmpfile), ["aa"]); ob_start(); -it::readfile("/tmp/it_test"); +it::readfile($tmpfile); is(ob_get_clean(), "aa"); -it::file_put("/tmp/it_test", "bb"); -is(it::file_get("/tmp/it_test"), "bb"); -it::system("rm -f /tmp/it_test"); +it::file_put($tmpfile, "bb"); +is(it::file_get($tmpfile), "bb"); +unlink($tmpfile); -- cgit v1.2.3