コード例 #1
0
ファイル: ucword.py プロジェクト: tahmidMahmud/indiePrep
	def test_TwoWordsTwoSpace(self):
		self.assertEqual(ucword('hello  goodbye'), 'Hello  Goodbye')
コード例 #2
0
ファイル: ucword.py プロジェクト: tahmidMahmud/indiePrep
	def test_WithDelimiter(self):
		self.assertEqual(ucword('hello|goodbye', '|'), 'Hello|Goodbye')
コード例 #3
0
ファイル: ucword.py プロジェクト: tahmidMahmud/indiePrep
	def test_OneWord(self):
		self.assertEqual(ucword('hello'), 'Hello')