Mercurial > hg > rc1
comparison vendor/pear/console_commandline/tests/console_commandline_parse_11.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 (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 |