Adds done

This commit is contained in:
Nuno Maduro
2024-08-10 14:27:18 +01:00
parent 86f46c2efd
commit ad6dca94fa
4 changed files with 54 additions and 2 deletions

17
tests/Features/Done.php Normal file
View File

@ -0,0 +1,17 @@
<?php
it('may have an associated assignee', function () {
expect(true)->toBeTrue();
})->done(assignee: 'nunomaduro');
it('may have an associated issue', function () {
expect(true)->toBeTrue();
})->done(issue: 1);
it('may have an associated PR', function () {
expect(true)->toBeTrue();
})->done(pr: 1);
it('may have an associated note', function () {
expect(true)->toBeTrue();
})->done(note: 'a note');