Files
dss/core/tests/mix.py
2012-08-30 21:47:29 +01:00

13 lines
181 B
Python

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