Jeff Williams 8bc7f7246a Revert "support a raw array of doclets in addition to TaffyDB objects (#258)"
This reverts commit aad7b4896e503b66a29f46c02cc08f84e5535f42.

Conflicts:
	test/specs/jsdoc/util/templateHelper.js
2012-12-04 21:53:17 -08:00
..
2012-07-03 17:37:17 -07:00
2012-11-06 20:24:48 -08:00
2012-04-30 17:39:50 -07:00
2012-04-30 17:39:50 -07:00
2012-05-06 00:43:22 -07: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>');
    });

});