uptime-kuma-api/tests/test_uptime.py

14 lines
239 B
Python
Raw Normal View History

2022-08-05 14:35:17 +02:00
import unittest
from uptime_kuma_test_case import UptimeKumaTestCase
class TestUptime(UptimeKumaTestCase):
def test_uptime(self):
self.add_monitor()
self.api.uptime()
if __name__ == '__main__':
unittest.main()