summaryrefslogtreecommitdiffstats
path: root/test/json.js
blob: 7bebd4c87fec82f7bc9894ab5cef63964061a07b (plain)
1
2
3
4
5
6
7
8
9
10
11

describe('JSON generator', function () {
    describe('Basic Book', function() {
        it('should correctly output a README.json', function() {
            return books.generate("basic", "json")
                .then(function(book) {
                    book.should.have.file("README.json");
                });
        });
    });
});