blob: ee8771db255cb8d1c32b4c3b9333770d1d582392 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
/* Any copyright is dedicated to the Public Domain.
http://creativecommons.org/publicdomain/zero/1.0/ */
"use strict";
/**
* Ensure that each instance of the Dev Tools loader contains its own loader
* instance, and also returns unique objects. This ensures there is no sharing
* in place between loaders.
*/
function run_test() {
const loader1 = new DevToolsLoader();
const loader2 = new DevToolsLoader();
const indent1 = loader1.require("resource://devtools/shared/indentation.js");
const indent2 = loader2.require("resource://devtools/shared/indentation.js");
Assert.ok(indent1 !== indent2);
Assert.ok(loader1.loader !== loader2.loader);
Assert.ok(loader1.id !== loader2.id);
}
|