mirror of
https://github.com/jbcr/core.git
synced 2026-04-04 15:22:23 +02:00
16 lines
266 B
PHP
16 lines
266 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Bolt\Tests\Helpers;
|
|
|
|
use Bolt\Helpers\Str;
|
|
|
|
class StrTest extends \PHPUnit\Framework\TestCase
|
|
{
|
|
public function testSlug()
|
|
{
|
|
$slug = Str::slug('test 1');
|
|
$this->assertEquals('test-1', $slug);
|
|
}
|
|
} |