mirror of
https://github.com/pestphp/pest.git
synced 2026-09-05 22:33:35 +02:00
18 lines
525 B
PHP
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']);
|