gecko/toolkit/identity/tests/unit/test_load_modules.js
Ben Adida 8bdbd55546 Bug 753238 - Identity module unit tests. rs=dolske
--HG--
extra : rebase_source : 9ee371fd16d903ed55a98a62c765fe67665b5229
2012-07-06 16:27:33 -07:00

21 lines
550 B
JavaScript

/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this file,
* You can obtain one at http://mozilla.org/MPL/2.0/. */
const modules = [
"Identity.jsm",
"IdentityProvider.jsm",
"IdentityStore.jsm",
"jwcrypto.jsm",
"RelyingParty.jsm",
"Sandbox.jsm",
];
function run_test() {
for each (let m in modules) {
let resource = "resource://gre/modules/identity/" + m;
Components.utils.import(resource, {});
do_print("loaded " + resource);
}
}