summaryrefslogtreecommitdiffstats
path: root/test/6-parse.js
diff options
context:
space:
mode:
authorSamy Pessé <samypesse@gmail.com>2016-01-28 17:35:32 +0100
committerSamy Pessé <samypesse@gmail.com>2016-01-28 17:35:32 +0100
commit461ef2c68e9086bd77f0a25d57956ebf60308f7c (patch)
treec0e8814e3c57ea5bf21526acc3a7e9b1c925576a /test/6-parse.js
parent46efdacd6d3d5c7560d8f956e2339c36157f7c89 (diff)
downloadgitbook-461ef2c68e9086bd77f0a25d57956ebf60308f7c.zip
gitbook-461ef2c68e9086bd77f0a25d57956ebf60308f7c.tar.gz
gitbook-461ef2c68e9086bd77f0a25d57956ebf60308f7c.tar.bz2
Add unit tests for langs
Diffstat (limited to 'test/6-parse.js')
-rw-r--r--test/6-parse.js22
1 files changed, 22 insertions, 0 deletions
diff --git a/test/6-parse.js b/test/6-parse.js
new file mode 100644
index 0000000..422744d
--- /dev/null
+++ b/test/6-parse.js
@@ -0,0 +1,22 @@
+var mock = require('./mock');
+
+describe('Parsing', function() {
+ it('should fail without SUMMARY', function() {
+ return mock.setupBook({
+ 'README.md': ''
+ })
+ .then(function(book) {
+ return book.parse().should.be.rejected;
+ });
+ });
+
+ it('should fail without README', function() {
+ return mock.setupBook({
+ 'SUMMARY.md': ''
+ })
+ .then(function(book) {
+ return book.parse().should.be.rejected;
+ });
+ });
+});
+