Files
pest/tests/Features/Assignee.php
T
nuno maduro 4a65054f83 chore: style
2026-08-24 09:39:08 +01:00

18 lines
525 B
PHP

<?php
declare(strict_types=1);
beforeEach(function (): void {
expect(true)->toBeTrue();
})->assignee('nunomaduro');
it('may be associated with an assignee', function (): void {
expect(true)->toBeTrue();
})->assignee('taylorotwell');
describe('nested', function (): void {
it('may be associated with an assignee', function (): void {
expect(true)->toBeTrue();
})->assignee('taylorotwell');
})->assignee('nunomaduro')->note('an note between an the assignee')->assignee(['jamesbrooks', 'joedixon']);