mirror of
https://github.com/carp-lang/Carp.git
synced 2024-11-04 01:25:04 +03:00
25 lines
656 B
Plaintext
25 lines
656 B
Plaintext
|
(use String)
|
||
|
|
||
|
(load "Test.carp")
|
||
|
(load "Array.carp")
|
||
|
(use Test)
|
||
|
|
||
|
(deftest test
|
||
|
(assert-equal test
|
||
|
&[\s \v \e \d \ä \n \g]
|
||
|
&(chars "svedäng")
|
||
|
"chars works as expected")
|
||
|
(assert-equal test
|
||
|
"svedäng"
|
||
|
&(from-chars &[\s \v \e \d \ä \n \g])
|
||
|
"from-chars works as expected")
|
||
|
(assert-equal test
|
||
|
&[\😀 \😀 \😀]
|
||
|
&(chars "😀😀😀")
|
||
|
"chars splits emoji")
|
||
|
(assert-equal test
|
||
|
"😀😀😀"
|
||
|
&(from-chars &[\😀 \😀 \😀])
|
||
|
"from-chars joins emoji")
|
||
|
)
|