1
0
Fork 0

Test for About command (#11078)

pull/11115/head
Abdullahi Temidayo Jimoh 2022-10-12 13:22:28 +01:00 committed by GitHub
parent 822fd640d0
commit 05aecfbe8b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 21 additions and 0 deletions

View File

@ -0,0 +1,21 @@
<?php
namespace Composer\Test\Command;
use Composer\Composer;
use Composer\Test\TestCase;
class AboutCommandTest extends TestCase
{
public function testAbout(): void
{
$composerVersion = Composer::getVersion();
$appTester = $this->getApplicationTester();
$this->assertSame(0, $appTester->run(['command' => 'about']));
$this->assertStringContainsString("Composer - Dependency Manager for PHP - version $composerVersion", $appTester->getDisplay());
$this->assertStringContainsString("Composer is a dependency manager tracking local dependencies of your projects and libraries.", $appTester->getDisplay());
$this->assertStringContainsString("See https://getcomposer.org/ for more information.", $appTester->getDisplay());
}
}