mirror of
https://github.com/mlua-rs/mlua
synced 2026-06-08 16:05:43 +00:00
16 lines
279 B
Rust
16 lines
279 B
Rust
use mlua::{Lua, Result};
|
|
|
|
#[test]
|
|
fn test_debug_format() -> Result<()> {
|
|
let lua = Lua::new();
|
|
|
|
// Globals
|
|
let globals = lua.globals();
|
|
let dump = format!("{globals:#?}");
|
|
assert!(dump.starts_with("{\n _G = table:"));
|
|
|
|
// TODO: Other cases
|
|
|
|
Ok(())
|
|
}
|