Exemplo n.º 1
0
	def test_palindrome_with__white_spaces(self):
		assert palindrome.check_if_Palindrome('bush saw sununu swash sub.') is True
Exemplo n.º 2
0
	def test_palindrome_mixed_case (self):
		assert palindrome.check_if_Palindrome('Bob') is True
Exemplo n.º 3
0
	def test_non_palindrome_string_is_false(self):
		assert palindrome.check_if_Palindrome('xyzz') is False
Exemplo n.º 4
0
	def test_palindrome_with_normal_string (self):
		assert palindrome.check_if_Palindrome('level') is True
Exemplo n.º 5
0
	def test_palindrome_with_panctuations(self):
		assert palindrome.check_if_Palindrome('racecar?') is True