Exemplo n.º 1
0
 def test_total_labour_cost(self):
     parser = ShiftParser()
     assert parser.total_labour_cost(full_string) == {
         '09:00': 30.0,
         '10:00': 50.0,
         '11:00': 50.0,
         '12:00': 64.0,
         '13:00': 74.0,
         '14:00': 74.0,
         '15:00': 44.0,
         '16:00': 26.67,
         '17:00': 54.0,
         '18:00': 60.0,
         '19:00': 66.0,
         '20:00': 66.0,
         '21:00': 66.0,
         '22:00': 59.0,
     }
Exemplo n.º 2
0
def process_shifts(path_to_csv='work_shifts.csv'):
    string = open(path_to_csv).read()
    parser = ShiftParser()
    return parser.total_labour_cost(string)