From 6fa1d9b032cd0432d35f34d183fa40591010706a Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Thu, 4 Jun 2015 09:26:29 +0200 Subject: php-zetacomponents-console-tools: 1.7 - New package --- php-zetacomponents-console-tools-pr8.patch | 118 +++++++++++++++++++++++++++++ 1 file changed, 118 insertions(+) create mode 100644 php-zetacomponents-console-tools-pr8.patch (limited to 'php-zetacomponents-console-tools-pr8.patch') diff --git a/php-zetacomponents-console-tools-pr8.patch b/php-zetacomponents-console-tools-pr8.patch new file mode 100644 index 0000000..028dc32 --- /dev/null +++ b/php-zetacomponents-console-tools-pr8.patch @@ -0,0 +1,118 @@ +From 16164a2d09b5f0c5a973c74d4ba3f0c8425ed1a5 Mon Sep 17 00:00:00 2001 +From: Remi Collet +Date: Wed, 3 Jun 2015 17:42:06 +0200 +Subject: [PATCH] create a interactive group + +--- + tests/menu_dialog_test.php | 12 ++++++++++++ + tests/question_dialog_test.php | 18 ++++++++++++++++++ + 2 files changed, 30 insertions(+) + +diff --git a/tests/menu_dialog_test.php b/tests/menu_dialog_test.php +index a98a0fb..6efa24b 100644 +--- a/tests/menu_dialog_test.php ++++ b/tests/menu_dialog_test.php +@@ -164,6 +164,9 @@ public function testBasicMethods() + $this->assertTrue( $exceptionCaught, "Excption not thrown on getResult() without result." ); + } + ++ /** ++ * @group interactive ++ */ + public function testDialog1() + { + $this->runDialog( __METHOD__ ); +@@ -180,6 +183,9 @@ public function testDialog1() + $this->assertEquals( $this->res, $res ); + } + ++ /** ++ * @group interactive ++ */ + public function testDialog2() + { + $this->runDialog( __METHOD__ ); +@@ -196,6 +202,9 @@ public function testDialog2() + $this->assertEquals( $this->res, $res ); + } + ++ /** ++ * @group interactive ++ */ + public function testDialog3() + { + $this->runDialog( __METHOD__ ); +@@ -221,6 +230,9 @@ public function testDialog3() + $this->assertEquals( $this->res, $res ); + } + ++ /** ++ * @group interactive ++ */ + public function testDialog4() + { + $this->runDialog( __METHOD__ ); +diff --git a/tests/question_dialog_test.php b/tests/question_dialog_test.php +index a7217fd..2a0a0be 100644 +--- a/tests/question_dialog_test.php ++++ b/tests/question_dialog_test.php +@@ -164,6 +164,9 @@ public function testBasicMethods() + $this->assertTrue( $exceptionCaught, "Excption not thrown on getResult() without result." ); + } + ++ /** ++ * @group interactive ++ */ + public function testYesNoQuestionFactory() + { + $output = new ezcConsoleOutput(); +@@ -178,6 +181,9 @@ public function testYesNoQuestionFactory() + $this->assertEquals( ezcConsoleQuestionDialogCollectionValidator::CONVERT_LOWER, $dialog->options->validator->conversion ); + } + ++ /** ++ * @group interactive ++ */ + public function testDialog1() + { + $this->runDialog( __METHOD__ ); +@@ -194,6 +200,9 @@ public function testDialog1() + $this->assertEquals( $this->res, $res ); + } + ++ /** ++ * @group interactive ++ */ + public function testDialog2() + { + $this->runDialog( __METHOD__ ); +@@ -216,6 +225,9 @@ public function testDialog2() + $this->assertEquals( $this->res, $res ); + } + ++ /** ++ * @group interactive ++ */ + public function testDialog3() + { + $this->runDialog( __METHOD__ ); +@@ -232,6 +244,9 @@ public function testDialog3() + $this->assertEquals( $this->res, $res ); + } + ++ /** ++ * @group interactive ++ */ + public function testDialog4() + { + $this->runDialog( __METHOD__ ); +@@ -254,6 +269,9 @@ public function testDialog4() + $this->assertEquals( $this->res, $res ); + } + ++ /** ++ * @group interactive ++ */ + public function testDialog5() + { + $this->runDialog( __METHOD__ ); -- cgit