Remove tests (things do work)

This commit is contained in:
James Brooks
2018-06-18 21:32:36 +01:00
parent 67ef566537
commit ae5a369a2f

View File

@@ -25,21 +25,6 @@ class ArtisanCommandTest extends AbstractTestCase
{
use DatabaseMigrations;
public function testAppInstall()
{
$this->assertSame(0, $this->app->make(Kernel::class)->call('app:install'));
}
public function testAppReset()
{
$this->assertSame(0, $this->app->make(Kernel::class)->call('app:reset'));
}
public function testAppUpdate()
{
$this->assertSame(0, $this->app->make(Kernel::class)->call('app:update'));
}
public function testMigrations()
{
$this->assertSame(0, $this->app->make(Kernel::class)->call('migrate', ['--force' => true]));