removed test_slug_multi_byte_lower_casing and added new test test_slug_multi_byte_url_safe

This commit is contained in:
Antonio Cortés (DrZippie) 2020-06-25 18:42:28 +02:00
parent ca202c1819
commit d617dba61c

View File

@ -273,15 +273,20 @@ class EntityTest extends BrowserKitTest
->seeInElement('#recently-updated-pages', $page->name);
}
public function test_slug_multi_byte_lower_casing()
public function test_slug_multi_byte_url_safe()
{
$book = $this->newBook([
'name' => 'КНИГА'
'name' => 'информация'
]);
$this->assertEquals('книга', $book->slug);
}
$this->assertEquals('informatsiya', $book->slug);
$book = $this->newBook([
'name' => '¿Qué?'
]);
$this->assertEquals('que', $book->slug);
}
public function test_slug_format()
{