From 2a86f709a8f5401afbc7e5c7f6f2905a6f68c721 Mon Sep 17 00:00:00 2001 From: James Brooks Date: Fri, 3 Feb 2017 22:08:14 +0000 Subject: [PATCH] Needless tests --- tests/Functional/AppCommandTest.php | 39 ----------------------------- 1 file changed, 39 deletions(-) delete mode 100644 tests/Functional/AppCommandTest.php diff --git a/tests/Functional/AppCommandTest.php b/tests/Functional/AppCommandTest.php deleted file mode 100644 index 9e596c224148..000000000000 --- a/tests/Functional/AppCommandTest.php +++ /dev/null @@ -1,39 +0,0 @@ - - * @author James Brooks - */ -class AppCommandTest extends AbstractTestCase -{ - public function testInstall() - { - $this->assertSame(0, $this->app->make(Kernel::class)->call('app:install')); - } - - public function testReset() - { - $this->assertSame(0, $this->app->make(Kernel::class)->call('app:reset')); - } - - public function testUpdate() - { - $this->assertSame(0, $this->app->make(Kernel::class)->call('app:reset')); - } -}