comparison vendor/pear/console_commandline/tests/console_commandline_parse_5.phpt @ 0:1e000243b222

vanilla 1.3.3 distro, I hope
author Charlie Root
date Thu, 04 Jan 2018 15:50:29 -0500
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:1e000243b222
1 --TEST--
2 Test for Console_CommandLine::parse() method (errors 2).
3 --SKIPIF--
4 <?php if(php_sapi_name()!='cli') echo 'skip'; ?>
5 --ARGS--
6 --float 2>&1
7 --FILE--
8 <?php
9
10 require_once dirname(__FILE__) . DIRECTORY_SEPARATOR . 'tests.inc.php';
11
12 try {
13 $parser = buildParser1();
14 $result = $parser->parse();
15 } catch (Console_CommandLine_Exception $exc) {
16 $parser->displayError($exc->getMessage());
17 }
18
19 ?>
20 --EXPECT--
21 Error: Option "float" requires a value.
22 Type "some_program --help" to get help.