mirror of
https://github.com/cappuccino/cappuccino.git
synced 2026-08-29 15:07:04 +00:00
6 lines
197 B
JavaScript
6 lines
197 B
JavaScript
var test = require('test');
|
|
var a = require('submodule/a');
|
|
var b = require('submodule/b');
|
|
test.assert(a.foo == b.foo, 'a and b share foo through a relative require');
|
|
test.print('DONE', 'info');
|