Files
gitbook/test/structure.js
T
2015-11-16 09:55:45 +01:00

9 lines
272 B
JavaScript

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');
});
});
});