From c8f7e9212412347c6ebecbea0fb3eeae2e28747d Mon Sep 17 00:00:00 2001 From: James Brooks Date: Fri, 3 Jun 2016 10:44:02 +0100 Subject: [PATCH] Only test the seed command --- tests/Functional/CommandTest.php | 15 --------------- 1 file changed, 15 deletions(-) diff --git a/tests/Functional/CommandTest.php b/tests/Functional/CommandTest.php index 580b2869..43f4b1a3 100644 --- a/tests/Functional/CommandTest.php +++ b/tests/Functional/CommandTest.php @@ -30,21 +30,6 @@ class CommandTest extends AbstractTestCase $this->assertSame(0, $this->app->make(Kernel::class)->call('migrate', ['--force' => true])); } - public function testInstall() - { - $this->assertSame(0, $this->app->make(Kernel::class)->call('app:install')); - } - - public function testUpdate() - { - $this->assertSame(0, $this->app->make(Kernel::class)->call('app:update')); - } - - public function testReset() - { - $this->assertSame(0, $this->app->make(Kernel::class)->call('app:reset')); - } - public function testSeed() { $this->assertSame(0, $this->app->make(Kernel::class)->call('cachet:seed'));