summaryrefslogtreecommitdiffstats
path: root/test/structure.js
blob: b25a021fbc0c91e192dff3ec1d3bf752910936fb (plain)
1
2
3
4
5
6
7
8
describe('Structure', function () {
    it('should prioritize structure defined in book.json', function() {
        return books.parse('structure')
            .then(function(book) {
                book.readmeFile.should.equal('README.adoc');
            });
    });
});