mirror of
https://github.com/jsdoc/jsdoc.git
synced 2025-12-08 19:46:11 +00:00
git-svn-id: https://jsdoc.googlecode.com/svn/trunk/@12 d5942f49-e6af-b5c1-9d01-85772c7ca168
13 lines
412 B
JavaScript
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');
|
|
});
|
|
|
|
})(); |