jsdoc/test/t/cases/also.js

13 lines
412 B
JavaScript

(function() {
var docSet = testhelpers.getDocSetFromFile('test/cases/also.js'),
name = docSet.getByLongname('Asset#name').filter(function($) {
return ! $.undocumented;
});
//dump(name);
test('When a symbol has two doclets adjacent to each other both doclets apply to the symbol.', function() {
assert.equal(name.length, 2, 'myObject');
});
})();