2020-03-02 22:11:56 +08:00
|
|
|
use rhai::{Engine, EvalAltResult};
|
2017-11-03 09:58:51 -07:00
|
|
|
|
|
|
|
#[test]
|
2020-03-02 22:11:56 +08:00
|
|
|
fn test_not() -> Result<(), EvalAltResult> {
|
2019-09-18 11:21:07 +01:00
|
|
|
let mut engine = Engine::new();
|
2017-11-03 09:58:51 -07:00
|
|
|
|
2019-09-18 11:21:07 +01:00
|
|
|
assert_eq!(
|
2020-03-02 22:11:56 +08:00
|
|
|
engine.eval::<bool>("let not_true = !true; not_true")?,
|
|
|
|
false
|
2019-09-18 11:21:07 +01:00
|
|
|
);
|
2017-11-03 09:58:51 -07:00
|
|
|
|
2020-03-02 22:11:56 +08:00
|
|
|
assert_eq!(engine.eval::<bool>("fn not(x) { !x } not(false)")?, true);
|
2017-11-03 09:58:51 -07:00
|
|
|
|
2019-09-18 11:21:07 +01:00
|
|
|
// TODO - do we allow stacking unary operators directly? e.g '!!!!!!!true'
|
2020-03-02 22:11:56 +08:00
|
|
|
assert_eq!(engine.eval::<bool>("!(!(!(!(true))))")?, true);
|
|
|
|
|
|
|
|
Ok(())
|
2017-11-03 09:58:51 -07:00
|
|
|
}
|