Fix tests.

This commit is contained in:
Stephen Chung 2020-11-17 12:40:12 +08:00
parent 038e3c2554
commit df72d324ba
3 changed files with 6 additions and 11 deletions

View File

@ -4,8 +4,8 @@ error: conflicting namespace
12 | #[rhai_fn(global, global)] 12 | #[rhai_fn(global, global)]
| ^^^^^^ | ^^^^^^
error[E0433]: failed to resolve: use of undeclared type or module `test_module` error[E0433]: failed to resolve: use of undeclared crate or module `test_module`
--> $DIR/rhai_fn_global_multiple.rs:23:8 --> $DIR/rhai_fn_global_multiple.rs:23:8
| |
23 | if test_module::test_fn(n) { 23 | if test_module::test_fn(n) {
| ^^^^^^^^^^^ use of undeclared type or module `test_module` | ^^^^^^^^^^^ use of undeclared crate or module `test_module`

View File

@ -161,9 +161,10 @@ service::increment(x);
x == 43; x == 43;
``` ```
Any functions (usually _methods_) defined in the module with `#[rhai_fn(global)]`, as well as All functions (usually _methods_) defined in the module and marked with `#[rhai_fn(global)]`,
all _type iterators_, are automatically exposed to the _global_ namespace, so iteration, as well as all _type iterators_, are automatically exposed to the _global_ namespace, so
[getters/setters] and [indexers] for [custom types] can work as expected. [iteration]({{rootUrl}}/language/for.md), [getters/setters] and [indexers] for [custom types]
can work as expected.
Therefore, in the example above, the `increment` method (defined with `#[rhai_fn(global)]`) Therefore, in the example above, the `increment` method (defined with `#[rhai_fn(global)]`)
works fine when called in method-call style: works fine when called in method-call style:

View File

@ -57,16 +57,10 @@ fn test_module_sub_module() -> Result<(), Box<EvalAltResult>> {
assert!(engine assert!(engine
.eval::<INT>("inc(question::life::universe::answer)") .eval::<INT>("inc(question::life::universe::answer)")
.is_err()); .is_err());
#[cfg(not(feature = "no_object"))]
assert_eq!( assert_eq!(
engine.eval::<INT>("super_inc(question::life::universe::answer)")?, engine.eval::<INT>("super_inc(question::life::universe::answer)")?,
42 42
); );
#[cfg(feature = "no_object")]
assert!(engine
.eval::<INT>("super_inc(question::life::universe::answer)")
.is_err());
Ok(()) Ok(())
} }