rhai/tests/decrement.rs

18 lines
429 B
Rust
Raw Normal View History

use rhai::{Engine, EvalAltResult, INT};
2017-11-03 17:58:51 +01:00
#[test]
2020-03-02 15:11:56 +01:00
fn test_decrement() -> Result<(), EvalAltResult> {
2017-11-03 17:58:51 +01:00
let mut engine = Engine::new();
assert_eq!(engine.eval::<INT>("let x = 10; x -= 7; x")?, 3);
2017-11-03 17:58:51 +01:00
2020-03-02 15:11:56 +01:00
let r = engine.eval::<String>("let s = \"test\"; s -= \"ing\"; s");
match r {
2020-03-02 16:16:19 +01:00
Err(EvalAltResult::ErrorFunctionNotFound(err, _)) if err == "- (string, string)" => (),
2020-03-02 15:11:56 +01:00
_ => panic!(),
}
Ok(())
2017-11-03 17:58:51 +01:00
}