1
0
socials-util/test/test_extension.py
Jon Michael Aanes 1d04d84788
All checks were successful
Python Package / Package (push) Has been skipped
Use aenum to allow for third party extensions.
2023-12-19 23:14:46 +01:00

12 lines
252 B
Python

from socials_util import *
import aenum
def test_extension():
MY_SECRET_SITE = aenum.extend_enum(SocialSiteId, 'MY_SECRET_SITE', 666)
assert MY_SECRET_SITE
assert SocialSiteId.MY_SECRET_SITE
REGEXES.append(('test', MY_SECRET_SITE))