示例#1
0
	def test_should_not_detect_pangram(self):
		sentence = "We promptly judged antique ivory buckles for the prize"
		self.assertFalse(is_valid(sentence))	
示例#2
0
	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))