1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 define("module0", function() {
15 ], function(gtest, module0, module1) {
16 gtest.expectEqual(module0.foo, "bar",
17 "module0.foo is " + module0.foo);
18 gtest.expectFalse(module0.bar,
19 "module0.bar is " + module0.bar);
20 gtest.expectEqual(module1.baz, "qux",
21 "module1.baz is " + module1.baz);
22 gtest.expectFalse(module1.qux,
23 "module1.qux is " + module1.qux);