18 lines
352 B
PHP
18 lines
352 B
PHP
<?php
|
|
|
|
namespace Tests\Unit\helpers;
|
|
|
|
use Tests\TestCase;
|
|
|
|
class SlugTest extends TestCase
|
|
{
|
|
/**
|
|
* @return void
|
|
*/
|
|
public function test_slug_returns_valid_tag_for_cn_characters_when_language_is_set_to_en_US()
|
|
{
|
|
$tag = str_slug('中文測試', '-', 'en_US');
|
|
|
|
$this->assertEquals('zhong-wen-ce-shi', $tag);
|
|
}
|
|
}
|