コード例 #1
0
ファイル: test_constraints.py プロジェクト: zsmj513/scrapylib
 def test_fail(self):
     self.assertRaises(AssertionError, MaxLen(8, 'other'), self.item)
コード例 #2
0
ファイル: test_constraints.py プロジェクト: zsmj513/scrapylib
 def test_ok(self):
     MaxLen(8, 'name')(self.item)
     MaxLen(8, 'xxx')(self.item)