mirror of
https://github.com/pestphp/pest.git
synced 2026-03-07 16:27:23 +01:00
17 lines
331 B
PHP
17 lines
331 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Pest\TestCaseMethodFilters;
|
|
|
|
use Pest\Contracts\TestCaseMethodFilter;
|
|
use Pest\Factories\TestCaseMethodFactory;
|
|
|
|
final class TodoTestCaseFilter implements TestCaseMethodFilter
|
|
{
|
|
public function accept(TestCaseMethodFactory $factory): bool
|
|
{
|
|
return $factory->todo;
|
|
}
|
|
}
|