Files
animethemes-server/tests/Unit/Models/Admin/DumpTest.php
T
paranarimasu 1d93000c6f feat(admin): migrate db dumps from github to platform (#463)
* feat(admin): migrate db dumps from github to platform

* style: fix StyleCI findings
2022-09-18 22:31:29 -05:00

27 lines
405 B
PHP

<?php
declare(strict_types=1);
namespace Tests\Unit\Models\Admin;
use App\Models\Admin\Dump;
use Tests\TestCase;
/**
* Class DumpTest.
*/
class DumpTest extends TestCase
{
/**
* Dumps shall be nameable.
*
* @return void
*/
public function testNameable(): void
{
$dump = Dump::factory()->createOne();
static::assertIsString($dump->getName());
}
}