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