Add test for templating context

This commit is contained in:
Samy Pessé
2015-03-24 17:34:47 +01:00
parent b38a2c11a4
commit b2e684af8f
+33
View File
@@ -0,0 +1,33 @@
var pkg = require("../package.json");
describe('Templating', function () {
var book;
before(function() {
return books.parse("basic")
.then(function(_book) {
book = _book;
});
});
var testTpl = function(str, args, options) {
return book.template.renderString(str, args, options)
.then(book.template.postProcess)
};
describe('Context', function() {
it('should correctly have access to generator', function() {
return testTpl('{{ gitbook.generator }}')
.then(function(content) {
content.should.equal("website");
});
});
it('should correctly have access to gitbook version', function() {
return testTpl('{{ gitbook.version }}')
.then(function(content) {
content.should.equal(pkg.version.toString());
});
});
});
});