mirror of
https://github.com/AnimeThemes/animethemes-server.git
synced 2026-09-03 11:15:04 +02:00
* feat(admin): migrate db dumps from github to platform * style: fix StyleCI findings
27 lines
405 B
PHP
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());
|
|
}
|
|
}
|