コード例 #1
0
ファイル: util_tests.py プロジェクト: slavi104/cashtracker
 def test_hash_and_check_password(self):
     hashed_password = hash_password('42')
     self.assertEqual(check_password(hashed_password, '42'), True)
コード例 #2
0
ファイル: util_tests.py プロジェクト: slavi104/cashtracker
 def test_hash_password(self):
     hashed_password = hash_password('42')
     self.assertEqual(len(hashed_password), 97)