mirror of
https://github.com/KimigaiiWuyi/GenshinUID.git
synced 2025-07-04 05:53:29 +00:00
10 lines
236 B
Python
10 lines
236 B
Python
from nonebug import App
|
|
|
|
|
|
def test_get_superusers(app: App):
|
|
from GenshinUID.utils.nonebot2.utils import get_superusers
|
|
|
|
superusers = get_superusers()
|
|
assert len(superusers) == 2
|
|
assert set(superusers) == {10000, 10001}
|