We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7fd7ed5 commit b5e2b8cCopy full SHA for b5e2b8c
composer.json
@@ -28,7 +28,7 @@
28
"php" : ">=5.3.10"
29
},
30
"require-dev" : {
31
- "jbzoo/phpunit" : "1.x-dev"
+ "jbzoo/phpunit" : "~1.5.3"
32
33
"suggest" : {
34
"ext-mbstring" : "Provides multibyte specific string functions",
tests/CliTest.php
@@ -57,6 +57,10 @@ public function testBuild()
57
is('ls --option="qwert\"y"', Cli::build('ls', array(
58
'option' => 'qwert"y',
59
)));
60
+
61
+ is('ls --option="0"', Cli::build('ls', array(
62
+ 'option' => 0,
63
+ )));
64
}
65
66
public function testExec()
0 commit comments