Skip to content

Commit

Permalink
Merge pull request #84 from cocur/test-long-string
Browse files Browse the repository at this point in the history
Add test for very long string containing umlauts
  • Loading branch information
Florian Eckerstorfer committed Oct 30, 2015
2 parents 93db93d + 2bf8a13 commit c4fdadf
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tests/SlugifyTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,8 @@ public function provider()
array('နှစ်သစ်ကူးတွင် သတ္တဝါတွေ စိတ်ချမ်းသာ ကိုယ်ကျန်းမာ၍ ကောင်းခြင်း အနန္တနှင့် ပြည့်စုံကြပါစေ', 'nhitthitkutwin-thttwatwe-seikkhyaantha-koekyaanmaywae-kaungkhyin-anntnhin-pyisonkypase'),
array('Zażółć żółcią gęślą jaźń', 'zazolc-zolcia-gesla-jazn'),
array('Mężny bądź chroń pułk twój i sześć flag', 'mezny-badz-chron-pulk-twoj-i-szesc-flag'),
array('ერთი ორი სამი ოთხი ხუთი', 'erti-ori-sami-otkhi-khuti')
array('ერთი ორი სამი ოთხი ხუთი', 'erti-ori-sami-otkhi-khuti'),
array(str_repeat('Übergrößenträger', 1000), str_repeat('uebergroessentraeger', 1000))
);
}
}

0 comments on commit c4fdadf

Please sign in to comment.