mirror of https://github.com/boa-dev/boa.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
389 B
18 lines
389 B
12 months ago
|
#![allow(unused_crate_dependencies)]
|
||
|
|
||
2 years ago
|
use boa_macros::utf16;
|
||
|
|
||
|
#[test]
|
||
|
fn literal() {
|
||
|
let utf16 = utf16!("hello!");
|
||
|
let manual = "hello!".encode_utf16().collect::<Vec<_>>();
|
||
|
assert_eq!(manual, utf16);
|
||
|
}
|
||
|
|
||
|
#[test]
|
||
|
fn utf16() {
|
||
|
let utf16 = utf16!("hello!😁😁😁");
|
||
|
let manual = "hello!😁😁😁".encode_utf16().collect::<Vec<_>>();
|
||
|
assert_eq!(manual, utf16);
|
||
|
}
|