mirror of
https://github.com/lune-org/lune.git
synced 2024-12-12 13:00:37 +00:00
9 lines
198 B
Lua
9 lines
198 B
Lua
|
local DateTime = require("@lune/DateTime")
|
||
|
|
||
|
local TYPE = "DateTime"
|
||
|
|
||
|
assert(
|
||
|
typeof(DateTime.now()) == TYPE,
|
||
|
`dateTime.now() should return a {TYPE}, returned {tostring(typeof(DateTime.now()))}`
|
||
|
)
|