Skip to content

Commit

Permalink
Do not test version string pattern
Browse files Browse the repository at this point in the history
  • Loading branch information
jigarius committed Sep 23, 2024
1 parent 8caf0b9 commit 2cfa9cb
Showing 1 changed file with 0 additions and 8 deletions.
8 changes: 0 additions & 8 deletions test/Unit/DrallTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -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();
Expand Down

0 comments on commit 2cfa9cb

Please sign in to comment.