mirror of
https://github.com/jsdoc/jsdoc.git
synced 2025-12-08 19:46:11 +00:00
10 lines
445 B
JavaScript
10 lines
445 B
JavaScript
(function() {
|
|
var docSet = testhelpers.getDocSetFromFile('test/cases/alias3.js'),
|
|
tcm = docSet.getByLongname('trackr.CookieManager')[0],
|
|
tcmValue = docSet.getByLongname('trackr.CookieManager#value')[0];
|
|
|
|
test('When a symbol is a member of an aliased class, a this-variables is documented as if it were a member that class.', function() {
|
|
assert.equal(tcmValue.memberof, 'trackr.CookieManager');
|
|
});
|
|
|
|
})(); |