mirror of
https://github.com/AnimeThemes/animethemes-server.git
synced 2026-07-27 01:04:40 +02:00
18 lines
319 B
PHP
18 lines
319 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
use App\Models\Document\Page;
|
|
|
|
test('nameable', function () {
|
|
$page = Page::factory()->createOne();
|
|
|
|
$this->assertIsString($page->getName());
|
|
});
|
|
|
|
test('has subtitle', function () {
|
|
$page = Page::factory()->createOne();
|
|
|
|
$this->assertIsString($page->getSubtitle());
|
|
});
|