working version of join_org module demonstrated in tests/new_module_test.lua

This commit is contained in:
Luke Miller
2021-11-22 16:24:44 -05:00
parent 8bc5c5ba4e
commit 0ca04294b7
5 changed files with 74 additions and 8 deletions

View File

@@ -0,0 +1,10 @@
dofile('../modpol.lua');
modpol.orgs.reset()
test_org = modpol.instance:add_org('test_org', 'luke')
test_org:add_member('nathan')
print(table.concat(test_org:list_members(), ", "))
modpol.modules.join_org.initiate("paul", test_org, function () print("callback") end)