rhai/tests/while_loop.rs

15 lines
250 B
Rust
Raw Normal View History

use rhai::Engine;
2017-11-03 17:58:51 +01:00
#[test]
fn test_while() {
let mut engine = Engine::new();
assert_eq!(
engine.eval::<i64>(
"let x = 0; while x < 10 { x = x + 1; if x > 5 { \
break } } x",
),
Ok(6)
);
2017-11-03 17:58:51 +01:00
}