Files
dss/core/tests/mix.py
2012-09-12 21:42:38 +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()