コード例 #1
0
ファイル: tests.py プロジェクト: raymondSeger/spidy
 def test_check_word_given_invalid_word(self):
     word = "supercalifragilistic"
     self.assertTrue(check_word(word))
コード例 #2
0
ファイル: tests.py プロジェクト: raymondSeger/spidy
 def test_check_word_given_valid_word(self):
     word = "crawler"
     self.assertFalse(check_word(word))