Exemple #1
0
 def test_one_word(self):
     text = 'python'
     result = fcs.fcs_text(text)
     self.assertEqual(result, 'Python')
Exemple #2
0
 def test_multiple_words(self):
     text = 'akash cibi yash'
     result = fcs.fcs_text(text)
     self.assertEqual(result, 'Akash Cibi Yash')
Exemple #3
0
 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')