tests.py 267 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 Majordome # Create your tests here. class Majordome(TestCase): def setUp(self): self.majordome = Majordome() def test_basic(self): # TODO write some basic tests for majordome pass