def test_find_first_ts(): with open(pacemaker_log, 'r') as f: res = find_first_ts(f.read().split('\n')) eq_(ts_to_dt(res).strftime("%Y/%m/%d %H:%M:%S"), "2019/04/03 11:01:18")
def test_find_first_ts(): with open(pacemaker_log, 'r') as f: res = find_first_ts(f.read().split('\n')) assert ts_to_dt(res).strftime( "%Y/%m/%d %H:%M:%S") == "%d/04/03 11:01:18" % year