0
|
1 --TEST--
|
|
2 Test for Console_CommandLine::parse() method (subcommand help 1).
|
|
3 --SKIPIF--
|
|
4 <?php if(php_sapi_name()!='cli') echo 'skip'; ?>
|
|
5 --ARGS--
|
|
6 --help 2>&1
|
|
7 --FILE--
|
|
8 <?php
|
|
9
|
|
10 require_once dirname(__FILE__) . DIRECTORY_SEPARATOR . 'tests.inc.php';
|
|
11
|
|
12 $parser = buildParser2();
|
|
13 $result = $parser->parse();
|
|
14
|
|
15 ?>
|
|
16 --EXPECT--
|
|
17 Description of our parser goes here...
|
|
18
|
|
19 Usage:
|
|
20 some_program [options]
|
|
21 some_program [options] <command> [options] [args]
|
|
22
|
|
23 Options:
|
|
24 -v, --verbose verbose mode
|
|
25 -l logfile, --logfile=logfile path to logfile
|
|
26 -h, --help show this help message and exit
|
|
27 --version show the program version and exit
|
|
28
|
|
29 Commands:
|
|
30 install install given package (aliases: inst, instbis)
|
|
31 uninstall uninstall given package
|