mirror of
https://github.com/cappuccino/cappuccino.git
synced 2026-08-29 15:07:04 +00:00
11 lines
245 B
JavaScript
11 lines
245 B
JavaScript
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');
|