def test_one_word(self): text = 'python' result = fcs.fcs_text(text) self.assertEqual(result, 'Python')
def test_multiple_words(self): text = 'akash cibi yash' result = fcs.fcs_text(text) self.assertEqual(result, 'Akash Cibi Yash')
def test_multiple_word(self): text = 'selvam pythonist' result = fcs.fcs_text(text) self.assertEqual(result, 'Selvam Pythonist')
def test_one_word(self): text = 'vinay' result = fcs.fcs_text(text) self.assertEqual(result, 'Vinay')