Skip to content

Commit

Permalink
Test
Browse files Browse the repository at this point in the history
  • Loading branch information
Mike van Diepen committed Dec 9, 2019
1 parent 2a9be15 commit 11993ab
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions src/Traits/DirectoryCheckerTrait.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@ trait DirectoryCheckerTrait
*/
public function configurationDirectoryExists(string $path): bool
{
var_dump($path);

// An exception will be thrown if the directory doesn't exist
if (is_dir($path)) {
return true;
Expand Down
2 changes: 1 addition & 1 deletion tests/Unit/ConfigurationTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
class ConfigurationTest extends TestCase
{
protected const CONFIGURATION_FILE = 'config';
protected const CONFIGURATION_DIRECTORY = 'Fixtures';
protected const CONFIGURATION_DIRECTORY = __DIR__ . 'Fixtures';

/**
* The expectations for this test.
Expand Down

0 comments on commit 11993ab

Please sign in to comment.