mirror of
https://gitlab.gnome.org/GNOME/libsecret.git
synced 2024-12-23 05:08:56 +00:00
2bc2140d43
* And fix bugs, nullable collection_path
14 lines
388 B
JavaScript
14 lines
388 B
JavaScript
|
|
const Mock = imports.gi.MockService;
|
|
const Secret = imports.gi.Secret;
|
|
|
|
Mock.start("mock-service-normal.py");
|
|
|
|
var schema = new Secret.Schema.new("org.test",
|
|
Secret.SchemaFlags.NONE,
|
|
{ "blah": Secret.SchemaAttributeType.STRING });
|
|
log(schema.identifier);
|
|
log(schema.flags);
|
|
/* log(schema.attributes); */
|
|
|
|
Mock.stop(); |