20 lines
503 B
Rust
20 lines
503 B
Rust
use rhai::{Engine, EvalAltResult};
|
|
|
|
#[test]
|
|
fn test_not() -> Result<(), Box<EvalAltResult>> {
|
|
let engine = Engine::new();
|
|
|
|
assert_eq!(
|
|
engine.eval::<bool>("let not_true = !true; not_true")?,
|
|
false
|
|
);
|
|
|
|
#[cfg(not(feature = "no_function"))]
|
|
assert_eq!(engine.eval::<bool>("fn not(x) { !x } not(false)")?, true);
|
|
|
|
// TODO - do we allow stacking unary operators directly? e.g '!!!!!!!true'
|
|
assert_eq!(engine.eval::<bool>("!(!(!(!(true))))")?, true);
|
|
|
|
Ok(())
|
|
}
|