jsdoc/test/t/cases/also.js
2011-06-17 21:06:37 +01:00

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');
});
})();