mirror of
https://github.com/fergalmoran/dss.git
synced 2025-12-22 09:38:18 +00:00
13 lines
197 B
Python
Executable File
13 lines
197 B
Python
Executable File
from unittest import TestCase
|
|
|
|
class MixTestItem(object):
|
|
def get_mix_at(self, hour):
|
|
pass
|
|
|
|
class MixTest(TestCase):
|
|
def test_simple(self):
|
|
m = MixTestItem()
|
|
|
|
|
|
|