diff --git a/tests/.snapshots/success.txt b/tests/.snapshots/success.txt index 8d8e3e56..825a42c8 100644 --- a/tests/.snapshots/success.txt +++ b/tests/.snapshots/success.txt @@ -135,6 +135,10 @@ ✓ it throws exception when `process isolation` is true ✓ it do not throws exception when `process isolation` is false + WARN Tests\Unit\Plugins\Thanks + - it outputs funding options when --thanks is used → The plugin uses `exit()` so not sure how to implement this + ✓ it does not output funding options when --thanks is not used + PASS Tests\Unit\Plugins\Version ✓ it outputs the version when --version is used ✓ it do not outputs version when --version is not used @@ -167,5 +171,5 @@ WARN Tests\Visual\Success - visual snapshot of test suite on success - Tests: 6 skipped, 96 passed - Time: 3.56s + Tests: 7 skipped, 97 passed + Time: 3.57s diff --git a/tests/Unit/Plugins/Thanks.php b/tests/Unit/Plugins/Thanks.php new file mode 100644 index 00000000..837fbd32 --- /dev/null +++ b/tests/Unit/Plugins/Thanks.php @@ -0,0 +1,14 @@ +skip('The plugin uses `exit()` so not sure how to implement this'); + +it('does not output funding options when --thanks is not used', function () { + $output = new BufferedOutput(); + $plugin = new Thanks($output); + + $plugin->handleArguments(['foo', 'bar']); + assertEquals('', $output->fetch()); +});