mirror of
https://github.com/bs-community/blessing-skin-server
synced 2026-08-18 04:32:05 -04:00
16 lines
397 B
PHP
16 lines
397 B
PHP
<?php
|
|
|
|
namespace Tests;
|
|
|
|
use App\Models\User;
|
|
|
|
class UserMenuComposerTest extends TestCase
|
|
{
|
|
public function testAvatar()
|
|
{
|
|
$user = User::factory()->create(['avatar' => 5]);
|
|
$this->actingAs($user)->get('/')->assertSee('/avatar/5?size=36');
|
|
$this->get('/skinlib')->assertSee('/avatar/5?size=36');
|
|
$this->get('/user')->assertSee('/avatar/5?size=36');
|
|
}
|
|
}
|