Refine tests.

This commit is contained in:
Stephen Chung
2020-03-30 16:10:40 +08:00
parent ef6c6ea6d2
commit 273fc59a30
2 changed files with 29 additions and 7 deletions

View File

@@ -4,7 +4,7 @@ use rhai::{Engine, EvalAltResult, RegisterFn, INT};
#[test]
fn test_method_call() -> Result<(), EvalAltResult> {
#[derive(Clone)]
#[derive(Debug, Clone, Eq, PartialEq)]
struct TestStruct {
x: INT,
}
@@ -26,11 +26,15 @@ fn test_method_call() -> Result<(), EvalAltResult> {
engine.register_fn("update", TestStruct::update);
engine.register_fn("new_ts", TestStruct::new);
let ts = engine.eval::<TestStruct>("let x = new_ts(); x.update(); x")?;
assert_eq!(ts.x, 1001);
assert_eq!(
engine.eval::<TestStruct>("let x = new_ts(); x.update(); x")?,
TestStruct { x: 1001 }
);
let ts = engine.eval::<TestStruct>("let x = new_ts(); update(x); x")?;
assert_eq!(ts.x, 1);
assert_eq!(
engine.eval::<TestStruct>("let x = new_ts(); update(x); x")?,
TestStruct { x: 1 }
);
Ok(())
}