def test_normalize_datestring_int_mmdd(): assert normalize_datestring(101) == '20190101'
def test_normalize_datestring_str_yymmdd_s(): assert normalize_datestring('19/01/01') == '20190101'
def test_normalize_datestring_str_mmdd_h(): assert normalize_datestring('01-01') == '20190101'
def test_normalize_datestring_str_yyyymmdd(): assert normalize_datestring('20190101') == '20190101'