2020-03-10 23:06:20 +08:00
|
|
|
use rhai::{Engine, EvalAltResult, INT};
|
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-10 23:06:20 +08:00
|
|
|
assert_eq!(engine.eval::<INT>("let x = 1; x += 2; x")?, 3);
|
2019-10-09 12:06:32 +01:00
|
|
|
assert_eq!(
|
2020-03-02 22:11:56 +08:00
|
|
|
engine.eval::<String>("let s = \"test\"; s += \"ing\"; s")?,
|
|
|
|
"testing".to_string()
|
2019-10-09 12:06:32 +01:00
|
|
|
);
|
2020-03-02 22:11:56 +08:00
|
|
|
|
|
|
|
Ok(())
|
2017-11-03 09:58:51 -07:00
|
|
|
}
|