Files
dss/core/tests/mix.py
Fergal Moran 0813b4cef5 Housekeeping
2012-09-12 09:47:40 +01:00

13 lines
181 B
Python
Executable File

from unittest import TestCase
class Mix(object):
def get_mix_at(self, hour):
pass
class MixTest(TestCase):
def test_simple(self):
m = Mix()