Index: gin/modules/module_registry_unittests.js |
diff --git a/gin/modules/module_registry_unittests.js b/gin/modules/module_registry_unittests.js |
new file mode 100644 |
index 0000000000000000000000000000000000000000..ca7014899b314a293ab3c78659f8e19367abeb6b |
--- /dev/null |
+++ b/gin/modules/module_registry_unittests.js |
@@ -0,0 +1,30 @@ |
+// Copyright 2013 The Chromium Authors. All rights reserved. |
+// Use of this source code is governed by a BSD-style license that can be |
+// found in the LICENSE file. |
+ |
+define("module0", function() { |
+ return { |
+ "foo": "bar", |
+ } |
+}); |
+ |
+define("module2", [ |
+ "gtest", |
+ "module0", |
+ "module1" |
+ ], function(gtest, module0, module1) { |
+ gtest.expectEqual(module0.foo, "bar", |
+ "module0.foo is " + module0.foo); |
+ gtest.expectFalse(module0.bar, |
+ "module0.bar is " + module0.bar); |
+ gtest.expectEqual(module1.baz, "qux", |
+ "module1.baz is " + module1.baz); |
+ gtest.expectFalse(module1.qux, |
+ "module1.qux is " + module1.qux); |
+ |
+ this.result = "PASS"; |
+}); |
+ |
+define("module1", { |
+ "baz": "qux", |
+}); |