summaryrefslogtreecommitdiffstats
path: root/test/json.js
blob: 82966a9f3052339d33f76e2737b30227c9aba5c0 (plain)
1
2
3
4
5
6
7
8

describe('JSON generator', function () {
    it('should correctly generate a basic book to json', function() {
        return books.generate("basic", "json")
            .then(function(book) {
            });
    });
});