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