コード例 #1
0
 def test_days_to_date_empty(self):
     assert days_to_date(None) is None
コード例 #2
0
 def test_days_to_date_string_wrong_format(self):
     assert days_to_date('04.03.2019') is None
コード例 #3
0
 def test_days_to_date_datetime(self):
     assert days_to_date(datetime(2019, 3, 4, 10, 45)) == date(2019, 3, 4)
コード例 #4
0
 def test_days_to_date_string_positive(self):
     assert days_to_date('2019-03-04') == date(2019, 3, 4)
コード例 #5
0
 def test_days_to_date_date(self):
     assert days_to_date(date(2019, 3, 4)) == date(2019, 3, 4)