mirror of
https://github.com/snipe/snipe-it.git
synced 2025-01-23 11:43:47 -08:00
add test to ensure artisan optimize works
This commit is contained in:
parent
b68fcf1de5
commit
431da6c903
14
tests/Feature/Console/OptimizeTest.php
Normal file
14
tests/Feature/Console/OptimizeTest.php
Normal file
|
@ -0,0 +1,14 @@
|
||||||
|
<?php
|
||||||
|
|
||||||
|
namespace Tests\Feature\Console;
|
||||||
|
|
||||||
|
use Illuminate\Support\Facades\Artisan;
|
||||||
|
use Tests\TestCase;
|
||||||
|
|
||||||
|
class OptimizeTest extends TestCase
|
||||||
|
{
|
||||||
|
public function testOptimizeSucceeds()
|
||||||
|
{
|
||||||
|
$this->artisan('optimize')->assertSuccessful();
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in a new issue