mirror of
https://github.com/pestphp/pest.git
synced 2026-03-06 15:57:21 +01:00
16 lines
475 B
PHP
16 lines
475 B
PHP
<?php
|
|
|
|
beforeEach(function () {
|
|
expect(true)->toBeTrue();
|
|
})->assignee('nunomaduro');
|
|
|
|
it('may be associated with an assignee', function () {
|
|
expect(true)->toBeTrue();
|
|
})->assignee('taylorotwell');
|
|
|
|
describe('nested', function () {
|
|
it('may be associated with an assignee', function () {
|
|
expect(true)->toBeTrue();
|
|
})->assignee('taylorotwell');
|
|
})->assignee('nunomaduro')->note('an note between an the assignee')->assignee(['jamesbrooks', 'joedixon']);
|