From 7239ce5140103150e93258bfce5d8e55488fd00b Mon Sep 17 00:00:00 2001 From: Mior Muhammad Zaki Date: Wed, 30 Aug 2023 13:30:35 +0800 Subject: [PATCH] wip --- tests/Unit/Presets/LaravelTest.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/Unit/Presets/LaravelTest.php b/tests/Unit/Presets/LaravelTest.php index 5d0dc98..5cc8480 100644 --- a/tests/Unit/Presets/LaravelTest.php +++ b/tests/Unit/Presets/LaravelTest.php @@ -33,8 +33,8 @@ public function it_has_proper_signatures() $this->assertSame("{$directory}/database/migrations", $preset->migrationPath()); $this->assertSame("{$directory}/database/seeders", $preset->seederPath()); - $this->assertFalse($preset->hasCustomStubPath()); - $this->assertNull($preset->getCustomStubPath()); + $this->assertTrue($preset->hasCustomStubPath()); + $this->assertSame("{$directory}/stubs", $preset->getCustomStubPath()); $this->assertSame($files, $preset->filesystem()); }