mirror of
https://github.com/pestphp/pest.git
synced 2026-03-06 15:57:21 +01:00
16 lines
276 B
PHP
16 lines
276 B
PHP
<?php
|
|
|
|
beforeEach()->todo();
|
|
|
|
test('is marked as todo 1', function () {
|
|
$this->fail('This test should not run');
|
|
});
|
|
|
|
test('is marked as todo 2', function () {
|
|
$this->fail('This test should not run');
|
|
});
|
|
|
|
test('is marked as todo 3');
|
|
|
|
test()->shouldBeMarkedAsTodo();
|