comparison vendor/pear/console_commandline/tests/console_commandline_fromxmlstring.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::fromXmlString() method.
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 $str = file_get_contents(dirname(__FILE__) . DIRECTORY_SEPARATOR . 'test.xml');
13 $parser = Console_CommandLine::fromXmlString($str);
14 $parser->parse();
15
16 ?>
17 --EXPECT--
18 zip/unzip files
19
20 Usage:
21 test [options]
22 test [options] <command> [options] [args]
23
24 Options:
25 -c choice, --choice=choice choice option
26 --list-choice lists valid choices for option choice
27 -p password, --password=password zip file password
28 -v, --verbose turn on verbose output
29 -h, --help show this help message and exit
30 --version show the program version and exit
31
32 Commands:
33 zip zip given files in the destination file (aliases: compress, zp)
34 unzip unzip given file in the destination dir (alias: uzp)