-
Notifications
You must be signed in to change notification settings - Fork 241
Closed
Description
Has something gone wrong with dependencies checking, or I simply do not get the way it is supposed to work?
schema = {'text':{'dependencies':{'deleted':False}}, 'deleted':{'type':'boolean'}}
test = {'deleted':True}
v.validate(test, schema)
True
test = {'deleted':False}
v.validate(test, schema)
True
I use 0.9.1