mirror of
https://github.com/bspeice/metrik
synced 2024-11-05 06:58:12 -05:00
14 lines
384 B
Python
14 lines
384 B
Python
|
from unittest import TestCase
|
||
|
from datetime import datetime
|
||
|
|
||
|
from metrik.batch import flows
|
||
|
|
||
|
|
||
|
class BatchTest(TestCase):
|
||
|
def test_flows_return_schedule(self):
|
||
|
present = datetime.now()
|
||
|
live = False
|
||
|
for flow_name, flow_class in flows.items():
|
||
|
assert flow_class(present=present,
|
||
|
live=live).get_schedule() is not None
|