Ejemplo n.º 1
0
	def test_with_sentence_special_sign(self):
		actual = pig_latin.pig_latin_sentence("what the heck? is this stuff?")
		expected = "atwhay ethay eckhay? isway isthay uffstay? "
		self.assertEqual(expected, actual)
Ejemplo n.º 2
0
	def test_with_sentence(self):
		actual = pig_latin.pig_latin_sentence("what the heck is this stuff")
		expected = "atwhay ethay eckhay isway isthay uffstay "
		self.assertEqual(expected, actual)