mirror of
https://github.com/HDInnovations/UNIT3D-Community-Edition.git
synced 2026-04-30 07:20:25 -05:00
23 lines
455 B
PHP
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();
|
|
}
|
|
}
|