rhai/tests/not.rs

16 lines
367 B
Rust
Raw Normal View History

2020-03-02 15:11:56 +01:00
use rhai::{Engine, EvalAltResult};
2017-11-03 17:58:51 +01:00
#[test]
fn test_not() -> Result<(), Box<EvalAltResult>> {
let engine = Engine::new();
2017-11-03 17:58:51 +01:00
2023-02-13 01:59:58 +01:00
assert!(!engine.eval::<bool>("let not_true = !true; not_true")?);
2017-11-03 17:58:51 +01:00
#[cfg(not(feature = "no_function"))]
2023-02-13 01:59:58 +01:00
assert!(engine.eval::<bool>("fn not(x) { !x } not(false)")?);
2017-11-03 17:58:51 +01:00
2023-02-13 01:59:58 +01:00
assert!(engine.eval::<bool>("!!!!true")?);
2020-03-02 15:11:56 +01:00
Ok(())
2017-11-03 17:58:51 +01:00
}