mirror of
https://github.com/pestphp/pest.git
synced 2026-03-06 15:57:21 +01:00
16 lines
244 B
PHP
16 lines
244 B
PHP
<?php
|
|
|
|
dataset('numbers.closure', function () {
|
|
yield [1];
|
|
yield [2];
|
|
});
|
|
|
|
dataset('numbers.closure.wrapped', function () {
|
|
yield 1;
|
|
yield 2;
|
|
});
|
|
|
|
dataset('numbers.array', [[1], [2]]);
|
|
|
|
dataset('numbers.array.wrapped', [1, 2]);
|