..
2014-10-20 16:56:45 -04:00
2014-10-20 16:56:45 -04:00
2014-10-20 16:56:45 -04:00
2014-10-20 16:56:45 -04:00
2014-10-20 16:56:45 -04:00
2014-10-20 16:56:45 -04:00
2014-10-20 16:56:45 -04:00
2014-10-20 16:56:45 -04:00
2014-10-20 16:56:45 -04:00
2014-10-20 16:56:45 -04:00
2014-10-20 16:56:45 -04:00
2014-10-20 16:56:45 -04:00
2014-10-20 16:56:45 -04:00
2014-10-20 16:56:45 -04:00
2014-10-20 16:56:45 -04:00

describe("jsdoc/readme", function() {
    var jsdoc = {readme: require('jsdoc/readme') },
        html = (new jsdoc.readme('test/fixtures/markdowntest.md')).html;

    it("should parse html out of markdown", function() {
        expect(html).toBeDefined();
        expect(typeof html).toEqual("string");
        expect(html).toContain('<code>');
        expect(html).toContain('<h2>');
        expect(html).toContain('<p>');
        expect(html).toContain('<li>');
    });

});