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