mirror of
https://github.com/jsdoc/jsdoc.git
synced 2025-12-08 19:46:11 +00:00
11 lines
389 B
JavaScript
11 lines
389 B
JavaScript
(function() {
|
|
var docSet = testhelpers.getDocSetFromFile('test/cases/also.js'),
|
|
name = docSet.getByLongname('Asset#name').filter(function($) {
|
|
return ! $.undocumented;
|
|
});
|
|
|
|
test('When a symbol has two doclets adjacent to each other both doclets apply to the symbol.', function() {
|
|
assert.equal(name.length, 2, 'myObject');
|
|
});
|
|
|
|
})(); |