summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--package.json2
-rw-r--r--test/books/init/SUMMARY.md3
-rw-r--r--test/init.js1
3 files changed, 5 insertions, 1 deletions
diff --git a/package.json b/package.json
index a66fc21..81de508 100644
--- a/package.json
+++ b/package.json
@@ -12,7 +12,7 @@
"resolve": "0.6.3",
"fs-extra": "0.16.5",
"fstream-ignore": "1.0.2",
- "gitbook-parsers": "0.8.1",
+ "gitbook-parsers": "0.8.2",
"nunjucks": "mozilla/nunjucks#b4351ec0752b102ebd02c5e2cbc2898a6e0e4839",
"nunjucks-autoescape": "1.0.0",
"nunjucks-filter": "1.0.0",
diff --git a/test/books/init/SUMMARY.md b/test/books/init/SUMMARY.md
index 1e63aed..31c1561 100644
--- a/test/books/init/SUMMARY.md
+++ b/test/books/init/SUMMARY.md
@@ -4,3 +4,6 @@
* [Hello 2](hello2.md)
* Hello 3
* [Hello 4](hello3/hello4.md)
+ * Hello 5
+ * [Hello 6](hello3/hello5/hello6.md)
+
diff --git a/test/init.js b/test/init.js
index 3ba701f..8415b20 100644
--- a/test/init.js
+++ b/test/init.js
@@ -19,5 +19,6 @@ describe('Init Books', function () {
should(fs.existsSync(path.resolve(initRoot, "hello.md"))).be.ok;
should(fs.existsSync(path.resolve(initRoot, "hello2.md"))).be.ok;
should(fs.existsSync(path.resolve(initRoot, "hello3/hello4.md"))).be.ok;
+ should(fs.existsSync(path.resolve(initRoot, "hello3/hello5/hello6.md"))).be.ok;
});
});