* Additional sweep to update Python versions and supported Python versions. * Fixed requirements and CONTRIBUTING. * Trying a different line skip to see if it fixes CI. CI is failing on test file generation again. * Once again re-rendering tests to see if it fixes CI. [no important files changed]
30 lines
851 B
Python
30 lines
851 B
Python
# These tests are auto-generated with test data from:
|
|
# https://github.com/exercism/problem-specifications/tree/main/exercises/reverse-string/canonical-data.json
|
|
# File last updated on 2023-07-16
|
|
|
|
import unittest
|
|
|
|
from reverse_string import (
|
|
reverse,
|
|
)
|
|
|
|
|
|
class ReverseStringTest(unittest.TestCase):
|
|
def test_an_empty_string(self):
|
|
self.assertEqual(reverse(""), "")
|
|
|
|
def test_a_word(self):
|
|
self.assertEqual(reverse("robot"), "tobor")
|
|
|
|
def test_a_capitalized_word(self):
|
|
self.assertEqual(reverse("Ramen"), "nemaR")
|
|
|
|
def test_a_sentence_with_punctuation(self):
|
|
self.assertEqual(reverse("I'm hungry!"), "!yrgnuh m'I")
|
|
|
|
def test_a_palindrome(self):
|
|
self.assertEqual(reverse("racecar"), "racecar")
|
|
|
|
def test_an_even_sized_word(self):
|
|
self.assertEqual(reverse("drawer"), "reward")
|