diff options
Diffstat (limited to 'test/website.js')
-rw-r--r-- | test/website.js | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/test/website.js b/test/website.js new file mode 100644 index 0000000..7efcec1 --- /dev/null +++ b/test/website.js @@ -0,0 +1,24 @@ +var path = require('path'); +var _ = require('lodash'); +var assert = require('assert'); + +var fs = require("fs"); +var fsUtil = require("../lib/utils/fs"); + + +describe('Website Generator', function () { + it('should correctly generate a book to website', function(done) { + testGeneration(books[1], "site", function(output) { + assert(fs.existsSync(path.join(output, "index.html"))); + }, done); + }); + + it('should correctly include styles in website', function(done) { + testGeneration(books[0], "site", function(output) { + assert(fs.existsSync(path.join(output, "styles/website.css"))); + + var INDEX = fs.readFileSync(path.join(output, "index.html")).toString(); + assert(INDEX.indexOf("styles/website.css") > 0); + }, done); + }); +}); |