mirror of
https://github.com/lune-org/lune.git
synced 2025-04-04 10:30:54 +01:00
reorder the asserts so we check the global first
This commit is contained in:
parent
8cc4a396f5
commit
d252be46b3
1 changed files with 3 additions and 3 deletions
|
@ -3,14 +3,14 @@
|
|||
local state_module = require("./state_module")
|
||||
|
||||
-- we confirm that without anything happening, the initial value is what we ecpect
|
||||
assert(state_module.state == 10)
|
||||
assert(_state_test_global == 10)
|
||||
assert(state_module.state == 10)
|
||||
|
||||
-- this second file also requires state_module and calls a function that changes both the local state and the global 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)
|
||||
-- if this also fails then there is either a problem with globals, or state_second is not doing what we expect it to
|
||||
assert(_state_test_global == 11)
|
||||
-- with correct module caching, we should see the change done in state_secone reflected here
|
||||
assert(state_module.state == 11)
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue