コード例 #1
0
 def test_is_not_video_in_db_true_by_date(self):
     bool = DBYouTube.is_not_video_in_db('1', '2018-06-01')
     self.assertEqual(bool, True)
コード例 #2
0
 def test_is_not_video_in_db_false_by_date(self):
     bool = DBYouTube.is_not_video_in_db('1', '2018-06-14')
     self.assertEqual(bool, False)
コード例 #3
0
 def test_is_not_video_in_db_true_by_id(self):
     bool = DBYouTube.is_not_video_in_db('fake_id', '2018-06-14')
     self.assertEqual(bool, True)