rhai/tests/while_loop.rs

27 lines
504 B
Rust
Raw Normal View History

use rhai::{Engine, EvalAltResult, INT};
2017-11-03 09:58:51 -07:00
#[test]
fn test_while() -> Result<(), Box<EvalAltResult>> {
let engine = Engine::new();
2017-11-03 09:58:51 -07:00
assert_eq!(
engine.eval::<INT>(
2020-04-01 16:22:18 +08:00
r"
let x = 0;
while x < 10 {
x = x + 1;
if x > 5 { break; }
if x > 3 { continue; }
x = x + 3;
}
x
",
2020-03-02 22:11:56 +08:00
)?,
6
);
2020-03-02 22:11:56 +08:00
Ok(())
2017-11-03 09:58:51 -07:00
}