コード例 #1
0
ファイル: test_pangram.py プロジェクト: besson/my-lab
	def test_should_not_detect_pangram(self):
		sentence = "We promptly judged antique ivory buckles for the prize"
		self.assertFalse(is_valid(sentence))	
コード例 #2
0
ファイル: test_pangram.py プロジェクト: besson/my-lab
	def test_should_detect_pangram_with_numbers(self):
		sentence = "We promptly judged antique ivory buckles for the prize 4 all 2"
		self.assertFalse(is_valid(sentence))