diff --git a/tests/.snapshots/success.txt b/tests/.snapshots/success.txt index 85805685..46d5d2d7 100644 --- a/tests/.snapshots/success.txt +++ b/tests/.snapshots/success.txt @@ -63,6 +63,8 @@ ✓ lazy datasets with (1) ✓ lazy datasets with (2) ✓ lazy datasets did the job right + ✓ interpolated (1) lazy datasets + ✓ interpolated (2) lazy datasets ✓ eager datasets with (1) ✓ eager datasets with (2) ✓ eager datasets did the job right @@ -1442,4 +1444,4 @@ WARN Tests\Visual\Version - visual snapshot of help command output - Tests: 2 deprecated, 4 warnings, 5 incomplete, 2 notices, 13 todos, 21 skipped, 1032 passed (2517 assertions) \ No newline at end of file + Tests: 2 deprecated, 4 warnings, 5 incomplete, 2 notices, 13 todos, 21 skipped, 1034 passed (2519 assertions) \ No newline at end of file diff --git a/tests/Features/DatasetsTests.php b/tests/Features/DatasetsTests.php index 25c3e3f1..6062ca27 100644 --- a/tests/Features/DatasetsTests.php +++ b/tests/Features/DatasetsTests.php @@ -61,6 +61,10 @@ test('lazy datasets did the job right', function () use ($state) { expect($state->text)->toBe('12'); }); +test('interpolated :dataset lazy datasets', function ($text) { + expect(true)->toBeTrue(); +})->with($datasets); + $state->text = ''; test('eager datasets', function ($text) use ($state, $datasets) { diff --git a/tests/Visual/Parallel.php b/tests/Visual/Parallel.php index a67555f4..37c8e0a2 100644 --- a/tests/Visual/Parallel.php +++ b/tests/Visual/Parallel.php @@ -16,7 +16,7 @@ $run = function () { test('parallel', function () use ($run) { expect($run('--exclude-group=integration')) - ->toContain('Tests: 2 deprecated, 4 warnings, 5 incomplete, 2 notices, 13 todos, 16 skipped, 1018 passed (2485 assertions)') + ->toContain('Tests: 2 deprecated, 4 warnings, 5 incomplete, 2 notices, 13 todos, 16 skipped, 1020 passed (2487 assertions)') ->toContain('Parallel: 3 processes'); })->skipOnWindows();