make initial implementation

credit
- https://github.com/AlphaModder/include-lua
This commit is contained in:
Andy Weidenbaum
2021-02-04 12:16:07 +11:00
parent 187c5f55ea
commit 38c15af4dc
6 changed files with 130 additions and 15 deletions

26
tests/tests.rs Normal file
View File

@@ -0,0 +1,26 @@
use rlua::Lua;
use rlua_searcher::{AddSearcher, Result};
use std::collections::HashMap;
#[test]
fn it_works() {
let lume = read_lume_to_string();
let name = "lume".to_string();
let mut map = HashMap::new();
map.insert(name, lume);
let lua = Lua::new();
let hello = lua
.context::<_, Result<String>>(|lua_ctx| {
lua_ctx.add_searcher(map)?;
Ok(lua_ctx.load(r#"return require("lume")"#).eval()?)
})
.unwrap();
assert_eq!("hello lume", hello);
}
fn read_lume_to_string() -> String {
r#"return "hello lume""#.to_string()
}