mirror of
https://gitlab.gnome.org/GNOME/libsecret.git
synced 2024-12-22 12:48:51 +00:00
17fade3173
* Lots of testing, fine tuning and other bits too.
8 lines
170 B
Python
8 lines
170 B
Python
#!/usr/bin/env python
|
|
|
|
import mock
|
|
|
|
service = mock.SecretService()
|
|
service.add_standard_objects()
|
|
service.algorithms = { "plain": mock.PlainAlgorithm() }
|
|
service.listen() |