Ejemplo n.º 1
0
 def test_date_invalid_parse(self):
     with self.assertRaises(ValueError):
         Date.parse('20-11-01')
         Date.parse('2020/11/01')
Ejemplo n.º 2
0
 def test_parse_week_from_date(self):
     week = Date.parse('2021-03-17')
     self.assertTrue(isinstance(week, Date))
Ejemplo n.º 3
0
 def test_date_parse(self):
     date = Date.parse('2020-11-01')
     self.assertTrue(isinstance(date, Date))