From d617dba61c20d7921245a7affad5be53a3a2af64 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Antonio=20Corte=CC=81s=20=28DrZippie=29?= Date: Thu, 25 Jun 2020 18:42:28 +0200 Subject: [PATCH] removed test_slug_multi_byte_lower_casing and added new test test_slug_multi_byte_url_safe --- tests/Entity/EntityTest.php | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/tests/Entity/EntityTest.php b/tests/Entity/EntityTest.php index d7e4ec61c..de1e025ad 100644 --- a/tests/Entity/EntityTest.php +++ b/tests/Entity/EntityTest.php @@ -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() {