rhai/tests/increment.rs

15 lines
332 B
Rust
Raw Normal View History

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_increment() -> Result<(), EvalAltResult> {
2017-11-03 09:58:51 -07:00
let mut engine = Engine::new();
2020-03-02 22:11:56 +08:00
assert_eq!(engine.eval::<i64>("let x = 1; x += 2; x")?, 3);
assert_eq!(
2020-03-02 22:11:56 +08:00
engine.eval::<String>("let s = \"test\"; s += \"ing\"; s")?,
"testing".to_string()
);
2020-03-02 22:11:56 +08:00
Ok(())
2017-11-03 09:58:51 -07:00
}