rhai/tests/string.rs

36 lines
820 B
Rust
Raw Normal View History

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();
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()
);
assert_eq!(
2020-03-03 14:39:25 +01:00
engine.eval::<String>(r#""Test string: \x58""#)?,
"Test string: X".to_string()
);
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()
);
#[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
}