uptime-kuma-api/tests/test_heartbeat.py

16 lines
321 B
Python
Raw Normal View History

2022-08-03 12:35:48 +02:00
import unittest
from uptime_kuma_test_case import UptimeKumaTestCase
class TestHeartbeat(UptimeKumaTestCase):
def test_get_heartbeats(self):
self.api.get_heartbeats()
def test_get_important_heartbeats(self):
self.api.get_important_heartbeats()
if __name__ == '__main__':
unittest.main()