16 lines
367 B
Rust
16 lines
367 B
Rust
use rhai::{Engine, EvalAltResult};
|
|
|
|
#[test]
|
|
fn test_not() -> Result<(), Box<EvalAltResult>> {
|
|
let engine = Engine::new();
|
|
|
|
assert!(!engine.eval::<bool>("let not_true = !true; not_true")?);
|
|
|
|
#[cfg(not(feature = "no_function"))]
|
|
assert!(engine.eval::<bool>("fn not(x) { !x } not(false)")?);
|
|
|
|
assert!(engine.eval::<bool>("!!!!true")?);
|
|
|
|
Ok(())
|
|
}
|