From ae5a369a2f7377022958ab1e0faae88168b8d902 Mon Sep 17 00:00:00 2001 From: James Brooks Date: Mon, 18 Jun 2018 21:32:36 +0100 Subject: [PATCH] Remove tests (things do work) --- tests/Functional/ArtisanCommandTest.php | 15 --------------- 1 file changed, 15 deletions(-) diff --git a/tests/Functional/ArtisanCommandTest.php b/tests/Functional/ArtisanCommandTest.php index 8fb11304..1c69d33d 100644 --- a/tests/Functional/ArtisanCommandTest.php +++ b/tests/Functional/ArtisanCommandTest.php @@ -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]));