mirror of
https://github.com/CachetHQ/Cachet.git
synced 2025-02-13 12:32:08 +01:00
24 lines
542 B
PHP
24 lines
542 B
PHP
<?php
|
|
|
|
/*
|
|
* This file is part of Cachet.
|
|
*
|
|
* (c) Alt Three Services Limited
|
|
*
|
|
* For the full copyright and license information, please view the LICENSE
|
|
* file that was distributed with this source code.
|
|
*/
|
|
|
|
namespace CachetHQ\Tests\Cachet\Functional;
|
|
|
|
use CachetHQ\Tests\Cachet\AbstractTestCase;
|
|
use Illuminate\Contracts\Console\Kernel;
|
|
|
|
class CommandTest extends AbstractTestCase
|
|
{
|
|
public function testMigrations()
|
|
{
|
|
$this->assertSame(0, $this->app->make(Kernel::class)->call('migrate', ['--force' => true]));
|
|
}
|
|
}
|