node-query/node_modules/jsdoc/test/specs/tags/licensetag.js

9 lines
291 B
JavaScript

describe("@license tag", function() {
var docSet = jasmine.getDocSetFromFile('test/fixtures/licensetag.js'),
doc = docSet.getByLongname('x')[0];
it("sets the doclet's 'license' property to the tag value", function() {
expect(doc.license).toBe('GPL v2');
});
});