2020-03-14 16:40:30 +01:00
|
|
|
use rhai::{Engine, EvalAltResult};
|
2020-03-03 11:15:20 +01:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_throw() {
|
2020-04-07 07:23:06 +02:00
|
|
|
let engine = Engine::new();
|
2020-03-03 11:15:20 +01:00
|
|
|
|
2020-03-14 16:40:30 +01:00
|
|
|
assert!(matches!(
|
2020-04-21 17:25:12 +02:00
|
|
|
*engine.eval::<()>(r#"if true { throw "hello" }"#).expect_err("expects error"),
|
|
|
|
EvalAltResult::ErrorRuntime(s, _) if s == "hello"
|
|
|
|
));
|
2020-03-03 11:15:20 +01:00
|
|
|
|
2020-03-14 16:40:30 +01:00
|
|
|
assert!(matches!(
|
2020-04-21 17:25:12 +02:00
|
|
|
*engine.eval::<()>(r#"throw"#).expect_err("expects error"),
|
|
|
|
EvalAltResult::ErrorRuntime(s, _) if s == ""
|
|
|
|
));
|
2020-03-03 11:15:20 +01:00
|
|
|
}
|