コード例 #1
0
ファイル: test_fcs.py プロジェクト: selvam/pythonfromcli
 def test_one_word(self):
     text = 'python'
     result = fcs.fcs_text(text)
     self.assertEqual(result, 'Python')
コード例 #2
0
ファイル: test_fcs.py プロジェクト: SriVinayA/FCS-Python
 def test_multiple_words(self):
     text = 'akash cibi yash'
     result = fcs.fcs_text(text)
     self.assertEqual(result, 'Akash Cibi Yash')
コード例 #3
0
ファイル: test_fcs.py プロジェクト: selvam/pythonfromcli
 def test_multiple_word(self):
     text = 'selvam pythonist'
     result = fcs.fcs_text(text)
     self.assertEqual(result, 'Selvam Pythonist')
コード例 #4
0
 def test_one_word(self):
     text = 'vinay'
     result = fcs.fcs_text(text)
     self.assertEqual(result, 'Vinay')