Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 0e24210

Browse filesBrowse files
committed
minor symfony#43729 [VarDumper]  skip command completion tests with older Symfony Console versions (xabbuh)
This PR was merged into the 5.4 branch. Discussion ---------- [VarDumper]  skip command completion tests with older Symfony Console versions | Q | A | ------------- | --- | Branch? | 5.4 | Bug fix? | no | New feature? | no | Deprecations? | no | Tickets | | License | MIT | Doc PR | Commits ------- aae509b skip command completion tests with older Symfony Console versions
2 parents 9c44920 + aae509b commit 0e24210
Copy full SHA for 0e24210

File tree

Expand file treeCollapse file tree

1 file changed

+4
-0
lines changed
Filter options
Expand file treeCollapse file tree

1 file changed

+4
-0
lines changed

‎src/Symfony/Component/VarDumper/Tests/Command/ServerDumpCommandTest.php

Copy file name to clipboardExpand all lines: src/Symfony/Component/VarDumper/Tests/Command/ServerDumpCommandTest.php
+4Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,10 @@ class ServerDumpCommandTest extends TestCase
1414
*/
1515
public function testComplete(array $input, array $expectedSuggestions)
1616
{
17+
if (!class_exists(CommandCompletionTester::class)) {
18+
$this->markTestSkipped('Test command completion requires symfony/console 5.4+.');
19+
}
20+
1721
$tester = new CommandCompletionTester($this->createCommand());
1822

1923
$this->assertSame($expectedSuggestions, $tester->complete($input));

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.