1
0
Fork 0
mirror of https://github.com/composer/composer synced 2025-05-09 00:22:53 +00:00

Test for About command (#11078)

This commit is contained in:
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

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());
}
}