reorder the asserts so we check the global first

This commit is contained in:
Frank O'Brien 2024-04-05 17:58:49 -07:00
parent 8cc4a396f5
commit d252be46b3

View file

@ -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)