mirror of
https://github.com/getgrav/grav.git
synced 2025-01-22 07:41:43 +00:00
28 lines
512 B
PHP
28 lines
512 B
PHP
<?php
|
|
|
|
use Codeception\Util\Fixtures;
|
|
use Grav\Common\Grav;
|
|
use Grav\Console\Gpm\InstallCommand;
|
|
|
|
/**
|
|
* Class InstallCommandTest
|
|
*/
|
|
class InstallCommandTest extends \Codeception\TestCase\Test
|
|
{
|
|
/** @var Grav $grav */
|
|
protected $grav;
|
|
|
|
/** @var InstallCommand */
|
|
protected $installCommand;
|
|
|
|
|
|
protected function _before(): void
|
|
{
|
|
$this->grav = Fixtures::get('grav');
|
|
$this->installCommand = new InstallCommand();
|
|
}
|
|
|
|
protected function _after(): void
|
|
{
|
|
}
|
|
}
|