예제 #1
0
 def test_min_length(self):
     self.assertRaises(ValidationError, min_length(6), "abcde")
     min_length(6)("abcdef")
예제 #2
0
 def test_min_length(self):
     self.assertRaises(ValidationError, min_length(6), "abcde")
     min_length(6)("abcdef")