mirror of
https://github.com/HDInnovations/UNIT3D-Community-Edition.git
synced 2026-02-20 11:49:31 -06:00
15 lines
435 B
PHP
15 lines
435 B
PHP
<?php
|
|
|
|
/**
|
|
* @see \App\Console\Commands\AutoBanDisposableUsers
|
|
*/
|
|
it('runs successfully', function (): void {
|
|
$this->markTestIncomplete('This test case was generated by Shift. When you are ready, remove this line and complete this test case.');
|
|
|
|
$this->artisan('auto:ban_disposable_users')
|
|
->assertExitCode(0)
|
|
->run();
|
|
|
|
// TODO: perform additional assertions to ensure the command behaved as expected
|
|
});
|