mirror of
https://github.com/alextselegidis/easyappointments.git
synced 2024-11-14 20:13:01 +03:00
13 lines
641 B
JavaScript
13 lines
641 B
JavaScript
|
describe("inner scope for modules", function() {
|
||
|
var docSet = jasmine.getDocSetFromFile('test/fixtures/moduleinner.js'),
|
||
|
fooIn = docSet.getByLongname('module:my/module~fooIn')[0],
|
||
|
fooOut = docSet.getByLongname('module:my/module~fooOut')[0];
|
||
|
|
||
|
it('When a function appears in the topscope of a module, the symbol is documented as an inner member of that module.', function() {
|
||
|
expect(typeof fooOut).toEqual('object');
|
||
|
expect(fooOut.longname).toEqual('module:my/module~fooOut');
|
||
|
|
||
|
expect(typeof fooIn).toEqual('object');
|
||
|
expect(fooIn.longname).toEqual('module:my/module~fooIn');
|
||
|
});
|
||
|
});
|