Mieszko Chowaniec
Mieszko Chowaniec
With reference to issue #212, the following must me tested: - dot notation - validate() method - password hashes with dot notation and without
In the mongokit.auth.User class '_id' and 'login' meant to be the same. In [1]: from mongokit.auth import User In [2]: me = User() In [3]: me.login, me.email, me.password = 'Winnetou',...
Consider: In [1]: from mongokit.auth import User In [2]: myuser = User() In [3]: myuser.password = 'secret' In [4]: myuser.password Out[5]: u'46d7d2b9ad86c80e9721f7ff7a1c4956166167b3d7ed2bf1cf76a2dbb8e3a101a204b9d1337a64c0' Works as expected. But: In [6]: myseconduser =...