2020-03-02 22:11:56 +08:00
|
|
|
use rhai::{Engine, EvalAltResult};
|
2017-11-03 09:58:51 -07:00
|
|
|
|
|
|
|
#[test]
|
2020-04-21 23:25:12 +08:00
|
|
|
fn test_not() -> Result<(), Box<EvalAltResult>> {
|
2020-04-07 13:23:06 +08:00
|
|
|
let engine = Engine::new();
|
2017-11-03 09:58:51 -07:00
|
|
|
|
2023-02-13 08:59:58 +08:00
|
|
|
assert!(!engine.eval::<bool>("let not_true = !true; not_true")?);
|
2017-11-03 09:58:51 -07:00
|
|
|
|
2020-03-11 13:28:12 +08:00
|
|
|
#[cfg(not(feature = "no_function"))]
|
2023-02-13 08:59:58 +08:00
|
|
|
assert!(engine.eval::<bool>("fn not(x) { !x } not(false)")?);
|
2017-11-03 09:58:51 -07:00
|
|
|
|
2023-02-13 08:59:58 +08:00
|
|
|
assert!(engine.eval::<bool>("!!!!true")?);
|
2020-03-02 22:11:56 +08:00
|
|
|
|
|
|
|
Ok(())
|
2017-11-03 09:58:51 -07:00
|
|
|
}
|