mirror of
https://github.com/pestphp/pest.git
synced 2026-09-05 22:33:35 +02:00
10 lines
169 B
PHP
10 lines
169 B
PHP
<?php
|
|
|
|
dataset('throws', function () {
|
|
throw new RuntimeException('boom from dataset');
|
|
});
|
|
|
|
it('x', function ($a) {
|
|
expect($a)->toBeTrue();
|
|
})->with('throws');
|