From d7e73c45204a28885c62677bb6d6fe5a2a0e38ff Mon Sep 17 00:00:00 2001 From: James Brooks Date: Fri, 3 Feb 2017 21:51:46 +0000 Subject: [PATCH] Added version command test --- tests/Functional/ArtisanCommandTest.php | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/tests/Functional/ArtisanCommandTest.php b/tests/Functional/ArtisanCommandTest.php index 94d2536c..1c69d33d 100644 --- a/tests/Functional/ArtisanCommandTest.php +++ b/tests/Functional/ArtisanCommandTest.php @@ -39,4 +39,9 @@ class ArtisanCommandTest extends AbstractTestCase { $this->assertSame(0, $this->app->make(Kernel::class)->call('cachet:beacon')); } + + public function testVersion() + { + $this->assertSame(0, $this->app->make(Kernel::class)->call('cachet:version')); + } }