tests.py 276 Bytes Edit Raw Blame History 1 2 3 4 5 6 7 8 9 10 11 12 13 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