mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-15 01:54:09 -08:00
15 lines
253 B
PHP
15 lines
253 B
PHP
|
<?php
|
||
|
|
||
|
namespace Tests\Feature\Console;
|
||
|
|
||
|
use Illuminate\Support\Facades\Artisan;
|
||
|
use Tests\TestCase;
|
||
|
|
||
|
class OptimizeTest extends TestCase
|
||
|
{
|
||
|
public function testOptimizeSucceeds()
|
||
|
{
|
||
|
$this->artisan('optimize')->assertSuccessful();
|
||
|
}
|
||
|
}
|