1--TEST--
2readline_read_history() function - Error cases
3--CREDITS--
4Pedro Manoel Evangelista <pedro.evangelista at gmail dot com>
5--EXTENSIONS--
6readline
7--SKIPIF--
8<?php if (!function_exists('readline_read_history')) die('skip readline_read_history function does not exist'); ?>
9<?php if (!READLINE_LIB != "libedit") die('skip READLINE_LIB != "libedit"'); ?>
10--FILE--
11<?php
12var_dump(readline_read_history('nofile'));
13?>
14--EXPECT--
15bool(false)
16