2020-03-10 23:06:20 +08:00
|
|
|
use rhai::{Engine, EvalAltResult, INT};
|
2017-11-03 09:58:51 -07:00
|
|
|
|
|
|
|
#[test]
|
2020-04-21 23:25:12 +08:00
|
|
|
fn test_decrement() -> Result<(), Box<EvalAltResult>> {
|
2020-04-07 13:23:06 +08:00
|
|
|
let engine = Engine::new();
|
2017-11-03 09:58:51 -07:00
|
|
|
|
2020-03-10 23:06:20 +08:00
|
|
|
assert_eq!(engine.eval::<INT>("let x = 10; x -= 7; x")?, 3);
|
2017-11-03 09:58:51 -07:00
|
|
|
|
2021-02-25 13:29:49 +08:00
|
|
|
assert_eq!(
|
|
|
|
engine.eval::<String>(r#"let s = "test"; s -= 's'; s"#)?,
|
|
|
|
"tet"
|
|
|
|
);
|
2020-03-02 22:11:56 +08:00
|
|
|
|
|
|
|
Ok(())
|
2017-11-03 09:58:51 -07:00
|
|
|
}
|