rhai/tests/while_loop.rs

27 lines
498 B
Rust
Raw Normal View History

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