Exemplo n.º 1
0
 def test_decade(self):
     ct = get_time_unit_from_string('decade')
     self.assertEqual(ct, TimeUnit.DECADE)
Exemplo n.º 2
0
 def test_month(self):
     ct = get_time_unit_from_string('month')
     self.assertEqual(ct, TimeUnit.MONTH)
Exemplo n.º 3
0
 def test_year(self):
     ct = get_time_unit_from_string('year')
     self.assertEqual(ct, TimeUnit.YEAR)
Exemplo n.º 4
0
 def test_day(self):
     ct = get_time_unit_from_string('day')
     self.assertEqual(ct, TimeUnit.DAY)
Exemplo n.º 5
0
 def test_week(self):
     ct = get_time_unit_from_string('week')
     self.assertEqual(ct, TimeUnit.WEEK)
Exemplo n.º 6
0
 def test_hour(self):
     ct = get_time_unit_from_string('hour')
     self.assertEqual(ct, TimeUnit.HOUR)
Exemplo n.º 7
0
 def test_minute(self):
     ct = get_time_unit_from_string('minute')
     self.assertEqual(ct, TimeUnit.MINUTE)
Exemplo n.º 8
0
 def test_second(self):
     ct = get_time_unit_from_string('second')
     self.assertEqual(ct, TimeUnit.SECOND)
Exemplo n.º 9
0
 def test_none_or_empty(self):
     ct = get_time_unit_from_string(None)
     self.assertIsNone(ct)
     ct = get_time_unit_from_string('')
     self.assertIsNone(ct)
Exemplo n.º 10
0
 def test_invalid(self):
     with self.assertRaises(InvalidArgument):
         get_time_unit_from_string('foo')