diff --git a/test_my_test.py b/test_my_test.py new file mode 100644 index 000000000000..459f2cc524f8 --- /dev/null +++ b/test_my_test.py @@ -0,0 +1,2 @@ +def test_simple_math(): + assert 2 + 2 == 4 diff --git a/test_palidrome.py b/test_palidrome.py new file mode 100644 index 000000000000..5d89b2971b0c --- /dev/null +++ b/test_palidrome.py @@ -0,0 +1,9 @@ +from strings.palindrome import is_palindrome + + +def test_palindrome_true(): + assert is_palindrome("level") == True + + +def test_palindrome_false(): + assert is_palindrome("hello") == False