use rhai::{Engine, EvalAltResult}; #[test] fn test_unit() -> Result<(), Box> { let engine = Engine::new(); engine.run("let x = (); x")?; Ok(()) } #[test] fn test_unit_eq() -> Result<(), Box> { let engine = Engine::new(); assert_eq!(engine.eval::("let x = (); let y = (); x == y")?, true); Ok(()) } #[test] fn test_unit_with_spaces() -> Result<(), Box> { let engine = Engine::new(); engine.run("let x = ( ); x")?; Ok(()) }