php-src/ext/readline/tests/readline_write_history_001.phpt

29 lines
502 B
Plaintext
Raw Normal View History

2008-11-21 21:00:16 +00:00
--TEST--
readline_write_history(): Basic test
2008-11-21 22:55:38 +00:00
--SKIPIF--
<?php if (!extension_loaded("readline") || !function_exists('readline_add_history')) die("skip");
if (READLINE_LIB == "libedit") die("skip readline only");
?>
2008-11-21 21:00:16 +00:00
--FILE--
<?php
$name = tempnam('/tmp', 'readline.tmp');
readline_add_history('foo');
readline_add_history('');
readline_add_history(1);
readline_add_history(NULL);
readline_write_history($name);
var_dump(file_get_contents($name));
unlink($name);
?>
--EXPECT--
string(8) "foo
1
"