mirror of
https://github.com/lune-org/lune.git
synced 2025-04-04 10:30:54 +01:00
14 lines
523 B
Lua
14 lines
523 B
Lua
-- the idea of this test is that state_module stores some state in one of its local
|
|
-- variable
|
|
local state_module = require("./state_module")
|
|
|
|
-- we confirm that without anything happening, the initial value is what we expect
|
|
assert(state_module.state == 10)
|
|
|
|
-- this second file also requires state_module and calls a function that changes the local
|
|
-- state to 11
|
|
require("./state_second")
|
|
|
|
-- with correct module caching, we should see the change done in state_secone reflected
|
|
-- here
|
|
assert(state_module.state == 11)
|