tests.py 276 Bytes
from django.test import TestCase
from .tasks import Monitoring

# Create your tests here.

class MonitoringTest(TestCase):

    def setUp(self):
        self.monitoring = Monitoring()

    def test_basic(self):
        # TODO write some basic tests for monitoring
        pass