node-query/node_modules/jsdoc/plugins/test/specs/escapeHtml.js

20 lines
851 B
JavaScript
Raw Normal View History

2014-10-22 10:11:40 -04:00
/*global describe: true, env: true, expect: true, it: true, jasmine: true */
2014-10-20 16:56:45 -04:00
describe("escapeHtml plugin", function() {
2014-10-22 10:11:40 -04:00
var parser = jasmine.createParser();
var path = require('jsdoc/path');
2014-10-20 16:56:45 -04:00
2014-10-22 10:11:40 -04:00
var docSet;
var pluginPath = 'plugins/escapeHtml';
var pluginPathResolved = path.join(env.dirname,pluginPath);
var plugin = require(pluginPathResolved);
require('jsdoc/plugins').installPlugins([pluginPathResolved], parser);
docSet = jasmine.getDocSetFromFile(pluginPath + '.js', parser);
2014-10-20 16:56:45 -04:00
it("should escape '&', '<' and newlines in doclet descriptions", function() {
var doclet = docSet.getByLongname("module:plugins/escapeHtml.handlers.newDoclet");
expect(doclet[0].description).toEqual("Translate HTML tags in descriptions into safe entities.<br> Replaces &lt;, &amp; and newlines");
});
});