JavaScript-V8-CommonJS

 view release on metacpan or  search on metacpan

t/modules/1.0/cyclic/program.js  view on Meta::CPAN

var test = require('test');
var a = require('a');
var b = require('b');

test.assert(a.a, 'a exists');
test.assert(b.b, 'b exists')
test.assert(a.a().b === b.b, 'a gets b');
test.assert(b.b().a === a.a, 'b gets a');

test.print('DONE', 'info');



( run in 0.358 second using v1.01-cache-2.11-cpan-b50b6a40fd4 )