def testQuestion2Mine_SingleCharacter(self):
     chapter1 = ChapterOne()
     reversedString = chapter1.question2_mine("a")
     
     self.assertEquals("a", reversedString)
 def testQuestion2Mine_EvenLength(self):
     chapter1 = ChapterOne()
     reversedString = chapter1.question2_mine("abcdef")
     
     self.assertEquals("fedcba", reversedString)