def test_channel_pass(self):
     response = {'channelTitle': 'paramount picture'}
     self.assertTrue(Validate.channel_title(response))
 def test_channel_fail(self):
     response = {'channelTitle': '7even3hreetv'}
     self.assertFalse(Validate.channel_title(response))