Added version command test

This commit is contained in:
James Brooks
2017-02-03 21:51:46 +00:00
parent ed165a8d14
commit d7e73c4520

View File

@@ -39,4 +39,9 @@ class ArtisanCommandTest extends AbstractTestCase
{ {
$this->assertSame(0, $this->app->make(Kernel::class)->call('cachet:beacon')); $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'));
}
} }