Files
UNIT3D-Community-Edition/tests/Unit/Console/Commands/AutoDisableInactiveUsersTest.php
T
2022-01-07 23:35:33 -05:00

23 lines
455 B
PHP

<?php
namespace Tests\Unit\Console\Commands;
use Tests\TestCase;
/**
* @see \App\Console\Commands\AutoDisableInactiveUsers
*/
class AutoDisableInactiveUsersTest extends TestCase
{
/**
* @test
*/
public function it_runs_successfully(): void
{
$this->artisan('auto:disable_inactive_users')
->expectsOutput('Automated User Disable Command Complete')
->assertExitCode(0)
->run();
}
}