From 35b7710f17e6cb2c27e6b31b11ed7663e23ddd4f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ewilan=20Rivi=C3=A8re?= Date: Thu, 30 May 2024 17:48:14 +0200 Subject: [PATCH] chore: Add PATH_SYMBOLIC constant to Pest.php The `PATH_SYMBOLIC` constant was added to the `Pest.php` file. This constant represents the symbolic path to the output data directory. --- tests/FileListSymbolicTest.php | 12 ++++++++++++ tests/Pest.php | 1 + 2 files changed, 13 insertions(+) create mode 100644 tests/FileListSymbolicTest.php diff --git a/tests/FileListSymbolicTest.php b/tests/FileListSymbolicTest.php new file mode 100644 index 0000000..0ee0a64 --- /dev/null +++ b/tests/FileListSymbolicTest.php @@ -0,0 +1,12 @@ +run(); + + expect($list->getFiles())->toHaveCount(7); +}); diff --git a/tests/Pest.php b/tests/Pest.php index 97bd44a..61cc0b2 100644 --- a/tests/Pest.php +++ b/tests/Pest.php @@ -2,3 +2,4 @@ define('PATH_TO_SCAN', __DIR__.'/data'); define('PATH_TO_OUTPUT', __DIR__.'/output'); +define('PATH_SYMBOLIC', __DIR__.'/output/data');