mirror of
https://github.com/composer/composer
synced 2025-05-09 16:42:57 +00:00
Test for About command (#11078)
This commit is contained in:
parent
822fd640d0
commit
05aecfbe8b
1 changed files with 21 additions and 0 deletions
21
tests/Composer/Test/Command/AboutCommandTest.php
Normal file
21
tests/Composer/Test/Command/AboutCommandTest.php
Normal 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());
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue