Add missing test for encode_utf8 (#683)

* Add missing test for encode_utf8

* Fix CI error by only run under std

* Merge test into testing framework for utf8 testing

---------

Co-authored-by: cxworks <cxworks@qq.com>
This commit is contained in:
xiang 2023-12-11 03:06:15 -05:00 committed by GitHub
parent 4933019c44
commit 7344ad0c85
1 changed files with 1 additions and 1 deletions

View File

@ -33,7 +33,7 @@ fn test_numbers() {
the_same(false);
// utf8 characters
for char in "aÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖרÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõö文".chars()
for char in "aÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖרÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõö文😀😁😂😃".chars()
{
the_same(char);
}