Ejemplo n.º 1
0
 def test_channel_pass(self):
     response = {'channelTitle': 'paramount picture'}
     self.assertTrue(Validate.channel_title(response))
Ejemplo n.º 2
0
 def test_channel_fail(self):
     response = {'channelTitle': '7even3hreetv'}
     self.assertFalse(Validate.channel_title(response))