class documentation

class TestFormat(object): (source)

View In Hierarchy

Undocumented

Method test_strftime_formats_2003Sep25 Undocumented
Method test_ybd Undocumented
@pytest.mark.parametrize('fmt,dstr', [('%a %b %d %Y', 'Thu Sep 25 2003'), ('%b %d %Y', 'Sep 25 2003'), ('%Y-%m-%d', '2003-09-25'), ('%Y%m%d', '20030925'), ('%Y-%b-%d', '2003-Sep-25'), ('%d-%b-%Y', '25-Sep-2003'), ('%b-%d-%Y', 'Sep-25-2003'), ('%m-%d-%Y', '09-25-2003'), ('%d-%m-%Y', '25-09-2003'), ('%Y.%m.%d', '2003.09.25'), ('%Y.%b.%d', '2003.Sep.25'), ('%d.%b.%Y', '25.Sep.2003'), ('%b.%d.%Y', 'Sep.25.2003'), ('%m.%d.%Y', '09.25.2003'), ('%d.%m.%Y', '25.09.2003'), ('%Y/%m/%d', '2003/09/25'), ('%Y/%b/%d', '2003/Sep/25'), ('%d/%b/%Y', '25/Sep/2003'), ('%b/%d/%Y', 'Sep/25/2003'), ('%m/%d/%Y', '09/25/2003'), ('%d/%m/%Y', '25/09/2003'), ('%Y %m %d', '2003 09 25'), ('%Y %b %d', '2003 Sep 25'), ('%d %b %Y', '25 Sep 2003'), ('%m %d %Y', '09 25 2003'), ('%d %m %Y', '25 09 2003'), ('%y %d %b', '03 25 Sep')])
def test_strftime_formats_2003Sep25(self, fmt, dstr): (source)

Undocumented

def test_ybd(self): (source)

Undocumented