mirror of
https://gh.wpcy.net/https://github.com/aspirepress/AspireCloud.git
synced 2026-07-18 11:39:23 +08:00
9 lines
199 B
PHP
9 lines
199 B
PHP
<?php
|
|
declare(strict_types=1);
|
|
|
|
use App\Models\User;
|
|
|
|
test('new users have User role', function () {
|
|
$user = User::factory()->create();
|
|
expect($user->roles->first()->name)->toBe('User');
|
|
});
|