Rename version global test

This commit is contained in:
Filip Tibell 2023-08-19 17:27:42 -05:00
parent 2762a43dbb
commit 24b6498774
3 changed files with 7 additions and 4 deletions

View file

@ -0,0 +1,5 @@
use mlua::prelude::*;
pub fn create(lua: &'static Lua) -> LuaResult<impl IntoLua<'_>> {
lua.create_table()
}

View file

@ -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",