f0c5f2ba9d
BREAKING CHANGE: Uptime Kuma versions < 1.21.3 are not supported in uptime-kuma-api 1.x.x
13 lines
284 B
Python
13 lines
284 B
Python
import unittest
|
|
|
|
from uptime_kuma_test_case import UptimeKumaTestCase
|
|
|
|
|
|
class TestGameList(UptimeKumaTestCase):
|
|
def test_game_list(self):
|
|
game_list = self.api.get_game_list()
|
|
self.assertTrue("keys" in game_list[0])
|
|
|
|
|
|
if __name__ == '__main__':
|
|
unittest.main()
|