#![allow(clippy::unit_cmp)]
prelude!();
#[test]
fn test_template_string() {
let out: String = eval(
r#"
let name = "John Doe";
`Hello ${name}, I am ${1 - 10} years old!`
"#,
);
assert_eq!(out, "Hello John Doe, I am -9 years old!");
let out: String = eval(
r#"
let name = "John Doe";
`Hello ${name}, I am ${{
let a = 20;
a += 2;
a
}} years old!`
"#,
);
assert_eq!(out, "Hello John Doe, I am 22 years old!");
}
#[test]
fn test_complex_field_access() {
let out: Option<i64> = eval(
r#"
fn foo() {
#{hello: #{world: 42}}
}
Some((foo()).hello["world"])
"#,
);
assert_eq!(out, Some(42));
}