|
0
|
1 --TEST--
|
|
|
2 Test for Console_CommandLine::parse() method (subcommand help 2).
|
|
|
3 --SKIPIF--
|
|
|
4 <?php if(php_sapi_name()!='cli') echo 'skip'; ?>
|
|
|
5 --ARGS--
|
|
|
6 inst --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 install given package
|
|
|
18
|
|
|
19 Usage:
|
|
|
20 some_program [options] install [options] package
|
|
|
21
|
|
|
22 Options:
|
|
|
23 -f, --force force installation
|
|
|
24 -h, --help show this help message and exit
|
|
|
25
|
|
|
26 Arguments:
|
|
|
27 package package to install
|