diff --git a/tests/Support/SupportStrTest.php b/tests/Support/SupportStrTest.php index 4d96baec5615..78d970cc5091 100755 --- a/tests/Support/SupportStrTest.php +++ b/tests/Support/SupportStrTest.php @@ -533,6 +533,9 @@ public function testIsMatch() public function testKebab() { $this->assertSame('laravel-php-framework', Str::kebab('LaravelPhpFramework')); + $this->assertSame('laravel-php-framework', Str::kebab('Laravel Php Framework')); + $this->assertSame('laravel❤-php-framework', Str::kebab('Laravel ❤ Php Framework')); + $this->assertSame('', Str::kebab('')); } public function testLower()