Blame view

src/core/pyros_django/monitoring/tests.py 276 Bytes
3df2d31a   haribo   #3430 : dates are...
1
from django.test import TestCase
d48f6550   Jeremy   Fix little bug on...
2
from .tasks import Monitoring
3df2d31a   haribo   #3430 : dates are...
3
4

# Create your tests here.
d48f6550   Jeremy   Fix little bug on...
5
6
7
8
9
10
11
12
13

class MonitoringTest(TestCase):

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

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