Ejemplo n.º 1
0
 class MyDoc(SchemaDocument):
     structure = {
         "foo": NOT(six.text_type, int),
         "bar": NOT(datetime),
         "foobar": NOT(string_type)
     }
Ejemplo n.º 2
0
 class BadMyDoc(SchemaDocument):
     structure = {"bla": NOT(int, tuple)}
Ejemplo n.º 3
0
 class BadMyDoc(SchemaDocument):
     structure = {"bla":NOT(unicode,str)}
Ejemplo n.º 4
0
 class MyDoc(SchemaDocument):
     structure = {
         "foo":NOT(unicode,int),
         "bar":NOT(datetime)
     }
Ejemplo n.º 5
0
 class BadMyDoc(SchemaDocument):
     structure = {"bla": NOT(str, str)}