mirror of
https://github.com/jsdoc/jsdoc.git
synced 2025-12-08 19:46:11 +00:00
Conflicts: lib/jsdoc/name.js lib/jsdoc/src/handlers.js lib/jsdoc/src/parser.js lib/jsdoc/tag/dictionary/definitions.js lib/jsdoc/util/templateHelper.js package.json test/specs/documentation/alias.js test/specs/documentation/modules.js test/specs/tags/augmentstag.js test/specs/tags/overviewtag.js
32 lines
1.2 KiB
JavaScript
32 lines
1.2 KiB
JavaScript
/*global afterEach: true, beforeEach: true, describe: true, env: true, expect: true, it: true */
|
|
describe("module names", function() {
|
|
var runtime = require('jsdoc/util/runtime');
|
|
|
|
var doclets;
|
|
|
|
var parser = require( runtime.getModulePath('jsdoc/src/parser') );
|
|
var srcParser = null;
|
|
var sourcePaths = env.opts._.slice(0);
|
|
|
|
beforeEach(function() {
|
|
env.opts._ = [__dirname + '/test/fixtures/modules/data/'];
|
|
srcParser = new parser.Parser();
|
|
require('jsdoc/src/handlers').attachTo(srcParser);
|
|
});
|
|
|
|
afterEach(function() {
|
|
env.opts._ = sourcePaths;
|
|
});
|
|
|
|
it("should create a name from the file path when no documented module name exists", function() {
|
|
doclets = srcParser.parse(__dirname + '/test/fixtures/modules/data/mod-1.js');
|
|
expect(doclets.length).toBeGreaterThan(1);
|
|
expect(doclets[0].longname).toEqual('module:data/mod-1');
|
|
});
|
|
|
|
it("should use the documented module name if available", function() {
|
|
doclets = srcParser.parse(__dirname + '/test/fixtures/modules/data/mod-2.js');
|
|
expect(doclets.length).toBeGreaterThan(1);
|
|
expect(doclets[0].longname).toEqual('module:my/module/name');
|
|
});
|
|
}); |