rhai/tests/decrement.rs

17 lines
409 B
Rust
Raw Normal View History

use rhai::Engine;
use rhai::EvalAltResult;
2017-11-03 17:58:51 +01:00
#[test]
fn test_decrement() {
let mut engine = Engine::new();
assert_eq!(engine.eval::<i64>("let x = 10; x -= 7; x"), Ok(3));
2017-11-03 17:58:51 +01:00
assert_eq!(
engine.eval::<String>("let s = \"test\"; s -= \"ing\"; s"),
Err(EvalAltResult::ErrorFunctionNotFound(
"- (alloc::string::String, alloc::string::String)".to_string()
))
);
2017-11-03 17:58:51 +01:00
}