libsecret/library/tests/test-unstable.js

18 lines
503 B
JavaScript
Raw Permalink Normal View History

2012-07-13 07:35:26 +00:00
const Mock = imports.gi.MockService;
const Secret = imports.gi.SecretUnstable;
const GLib = imports.gi.GLib;
const JsUnit = imports.jsUnit;
const assertNotEquals = JsUnit.assertNotEquals;
Mock.start("mock-service-normal.py");
var service = SecretUnstable.Service.get_sync(SecretUnstable.ServiceFlags.NONE);
var path = service.read_alias_dbus_path_sync("default", null);
/* Just running this without error is good enough for us to test the unstable gir */
assertNotEquals(path, null);
Mock.stop();