Fixes and additional tests

This commit is contained in:
James Belleau 2020-05-06 21:12:48 -05:00
commit 5ec814a604
5 changed files with 193 additions and 60 deletions

View file

@ -21,3 +21,9 @@ def get_network_id():
return "n-" + "".join(
random.choice(string.ascii_uppercase + string.digits) for _ in range(26)
)
def get_member_id():
return "m-" + "".join(
random.choice(string.ascii_uppercase + string.digits) for _ in range(26)
)