import unittest class Foo_TestCase(unittest.TestCase): """ Test cases for `Foo`. """ def test_lower_returns_expected_code(self): """ Should return expected code. The code is expected to be the lowercase of the scion. """ code = "Lorem".lower() self.assertEqual(code, "WRONG") def test_reverse_returns_expected_text(self): """ Should return expected reverse text. The text is expected to be the scion text, reversed from beginning to end. """ text = reversed("Lorem") self.assertEqual(text, "WRONG")