2020-03-02 22:11:56 +08:00
|
|
|
use rhai::{Engine, EvalAltResult};
|
2017-11-03 09:58:51 -07:00
|
|
|
|
|
|
|
#[test]
|
2020-03-02 22:11:56 +08:00
|
|
|
fn test_string() -> Result<(), EvalAltResult> {
|
2017-11-03 09:58:51 -07:00
|
|
|
let mut engine = Engine::new();
|
|
|
|
|
2019-10-09 12:06:32 +01:00
|
|
|
assert_eq!(
|
2020-03-03 21:39:25 +08:00
|
|
|
engine.eval::<String>(r#""Test string: \u2764""#)?,
|
2020-03-02 22:11:56 +08:00
|
|
|
"Test string: ❤".to_string()
|
2019-10-09 12:06:32 +01:00
|
|
|
);
|
|
|
|
assert_eq!(
|
2020-03-03 21:39:25 +08:00
|
|
|
engine.eval::<String>(r#""Test string: \x58""#)?,
|
|
|
|
"Test string: X".to_string()
|
|
|
|
);
|
|
|
|
assert_eq!(
|
|
|
|
engine.eval::<String>(r#""foo" + "bar""#)?,
|
2020-03-02 22:11:56 +08:00
|
|
|
"foobar".to_string()
|
2019-10-09 12:06:32 +01:00
|
|
|
);
|
2020-03-03 21:39:25 +08:00
|
|
|
assert_eq!(
|
|
|
|
engine.eval::<String>(r#""foo" + 123.4556"#)?,
|
|
|
|
"foo123.4556".to_string()
|
|
|
|
);
|
2020-03-02 22:11:56 +08:00
|
|
|
|
|
|
|
Ok(())
|
2017-11-03 09:58:51 -07:00
|
|
|
}
|