tests.py 267 Bytes
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