Files
dss/core/tests/mix.py
2012-08-21 14:32:03 +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()