mirror of
https://github.com/lune-org/lune.git
synced 2024-12-12 13:00:37 +00:00
Rename version global test
This commit is contained in:
parent
2762a43dbb
commit
24b6498774
3 changed files with 7 additions and 4 deletions
5
src/lune/globals/version.rs
Normal file
5
src/lune/globals/version.rs
Normal file
|
@ -0,0 +1,5 @@
|
|||
use mlua::prelude::*;
|
||||
|
||||
pub fn create(lua: &'static Lua) -> LuaResult<impl IntoLua<'_>> {
|
||||
lua.create_table()
|
||||
}
|
|
@ -79,13 +79,11 @@ create_tests! {
|
|||
require_siblings: "require/tests/siblings",
|
||||
|
||||
global_g_table: "globals/_G",
|
||||
// TODO: Uncomment this test, it is commented out right
|
||||
// now to let CI pass so that we can make a new release
|
||||
// global_coroutine: "globals/coroutine",
|
||||
global_version: "globals/_VERSION",
|
||||
global_coroutine: "globals/coroutine",
|
||||
global_pcall: "globals/pcall",
|
||||
global_type: "globals/type",
|
||||
global_typeof: "globals/typeof",
|
||||
global_version: "globals/version",
|
||||
|
||||
serde_compression_files: "serde/compression/files",
|
||||
serde_compression_roundtrip: "serde/compression/roundtrip",
|
||||
|
|
Loading…
Reference in a new issue