From dfb175bd1e4da2c010d2a76ff9a5774cad495358 Mon Sep 17 00:00:00 2001 From: Jerry Jigarius Radwick Date: Mon, 23 Sep 2024 16:17:49 +0530 Subject: [PATCH] Do not test version string pattern --- test/Unit/DrallTest.php | 8 -------- 1 file changed, 8 deletions(-) diff --git a/test/Unit/DrallTest.php b/test/Unit/DrallTest.php index 64dff70..c068bfc 100644 --- a/test/Unit/DrallTest.php +++ b/test/Unit/DrallTest.php @@ -17,14 +17,6 @@ public function testName() { $this->assertSame(Drall::NAME, $app->getName()); } - public function testVersion() { - $app = new Drall(); - $this->assertMatchesRegularExpression( - '/^\d+\.\d+.\d+(-(alpha|beta|rc)\d+)?$|^\d+\.x-dev/', - $app->getVersion(), - ); - } - public function testDefaultInputOptions() { $app = new Drall(); $options = $app->getDefinition()->getOptions();