def test_is_comment_false(self): result = HangmanGame.is_comment('This is a not comment') self.assertEqual(False, result)
def test_is_comment_true(self): result = HangmanGame.is_comment('# This is a comment') self.assertEqual(True, result)