Ejemplo n.º 1
0
Archivo: run.py Proyecto: azbshiri/tas
#!/usr/bin/env python3
from tas import make_schedule
from tabulate import tabulate


if __name__ == '__main__':
    table = make_schedule()
    tabular = tabulate(list(table), tablefmt="plain")
    print(tabular)
Ejemplo n.º 2
0
def test_that_schedule_is_not_empty():
    schedule = make_schedule()
    assert_that(schedule).is_not_empty()