2020-03-10 12:48:47 +01:00
|
|
|
#![cfg(not(feature = "no_stdlib"))]
|
2020-03-11 06:28:12 +01:00
|
|
|
#![cfg(not(feature = "no_function"))]
|
2020-03-10 16:06:20 +01:00
|
|
|
use rhai::{Engine, EvalAltResult, INT};
|
2020-03-04 15:00:01 +01:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_engine_call_fn() -> Result<(), EvalAltResult> {
|
|
|
|
let mut engine = Engine::new();
|
|
|
|
|
2020-03-10 07:09:05 +01:00
|
|
|
let ast = engine.compile(
|
|
|
|
r"
|
|
|
|
fn hello(x, y) {
|
|
|
|
x.len() + y
|
|
|
|
}
|
|
|
|
",
|
|
|
|
)?;
|
2020-03-04 15:00:01 +01:00
|
|
|
|
2020-03-10 16:06:20 +01:00
|
|
|
let result: INT = engine.call_fn("hello", &ast, (String::from("abc"), 123 as INT))?;
|
2020-03-04 15:00:01 +01:00
|
|
|
|
|
|
|
assert_eq!(result, 126);
|
|
|
|
|
|
|
|
Ok(())
|
|
|
|
}
|