コード例 #1
0
ファイル: wordValidatorTest.py プロジェクト: cloew/WordGuess
 def testCheckUp_down(self):
     """ Recognize target character is down in the alphabet """
     assert not WordValidator.up("a", "b"), "Should be down in the alphabet"
コード例 #2
0
ファイル: wordValidatorTest.py プロジェクト: cloew/WordGuess
 def testCheckUp_up(self):
     """ Recognize target character is up in the alphabet """
     assert WordValidator.up("b", "a"), "Should be up in the alphabet"