2022-11-13 10:39:28 -08:00

9 lines
195 B
Python

from palindrome_mhartl.phrase import Phrase
def test_non_palindrome():
assert not Phrase("apple").ispalindrome()
def test_literal_palindrome():
assert Phrase("racecar").ispalindrome()