diff --git a/tests/Unit/Presets/LaravelTest.php b/tests/Unit/Presets/LaravelTest.php index e824bda..bf9e4a2 100644 --- a/tests/Unit/Presets/LaravelTest.php +++ b/tests/Unit/Presets/LaravelTest.php @@ -35,8 +35,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()); }