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

23 lines
471 B
PHP

<?php
namespace Tests\Unit\Console\Commands;
use Tests\TestCase;
/**
* @see \App\Console\Commands\AutoRemoveFeaturedTorrent
*/
class AutoRemoveFeaturedTorrentTest extends TestCase
{
/**
* @test
*/
public function it_runs_successfully(): void
{
$this->artisan('auto:remove_featured_torrent')
->expectsOutput('Automated Removal Featured Torrents Command Complete')
->assertExitCode(0)
->run();
}
}