From 4a766313606472a148b0ca46d5d44890186e1e2e Mon Sep 17 00:00:00 2001 From: James Brooks Date: Thu, 4 Aug 2016 11:07:38 +0100 Subject: [PATCH] Added cachet:beacon test --- tests/Functional/CommandTest.php | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/tests/Functional/CommandTest.php b/tests/Functional/CommandTest.php index 43f4b1a3..7a546e3b 100644 --- a/tests/Functional/CommandTest.php +++ b/tests/Functional/CommandTest.php @@ -34,4 +34,9 @@ class CommandTest extends AbstractTestCase { $this->assertSame(0, $this->app->make(Kernel::class)->call('cachet:seed')); } + + public function testBeacon() + { + $this->assertSame(0, $this->app->make(Kernel::class)->call('cachet:beacon')); + } }