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-31 04:00:17 +02:00
|
|
|
"Test 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""#)?,
|
2020-03-31 04:00:17 +02:00
|
|
|
"Test string: X"
|
2020-03-03 14:39:25 +01:00
|
|
|
);
|
2020-03-10 12:48:47 +01:00
|
|
|
|
2020-03-31 04:00:17 +02:00
|
|
|
assert_eq!(engine.eval::<String>(r#""foo" + "bar""#)?, "foobar");
|
2020-03-10 12:48:47 +01:00
|
|
|
|
|
|
|
#[cfg(not(feature = "no_stdlib"))]
|
2020-03-31 04:00:17 +02:00
|
|
|
assert_eq!(engine.eval::<String>(r#""foo" + 123"#)?, "foo123");
|
2020-03-10 12:48:47 +01:00
|
|
|
|
|
|
|
#[cfg(not(feature = "no_float"))]
|
|
|
|
#[cfg(not(feature = "no_stdlib"))]
|
2020-03-31 04:00:17 +02:00
|
|
|
assert_eq!(engine.eval::<String>(r#""foo" + 123.4556"#)?, "foo123.4556");
|
|
|
|
|
|
|
|
#[cfg(not(feature = "no_stdlib"))]
|
|
|
|
assert_eq!(engine.eval::<String>("(42).to_string()")?, "42");
|
2020-03-02 15:11:56 +01:00
|
|
|
|
|
|
|
Ok(())
|
2017-11-03 17:58:51 +01:00
|
|
|
}
|