diff options
author | Samy Pessé <samypesse@gmail.com> | 2015-03-24 10:24:49 +0100 |
---|---|---|
committer | Samy Pessé <samypesse@gmail.com> | 2015-03-24 10:24:49 +0100 |
commit | 61c07e8876e1187b787dec412a496465a7f3bac0 (patch) | |
tree | c22caeebd05af701a68511d774c2b16f8f813dc4 | |
parent | d317741144c3179bf0a88eb731bb8195426405a6 (diff) | |
download | gitbook-61c07e8876e1187b787dec412a496465a7f3bac0.zip gitbook-61c07e8876e1187b787dec412a496465a7f3bac0.tar.gz gitbook-61c07e8876e1187b787dec412a496465a7f3bac0.tar.bz2 |
Add test for glossary parsing
-rw-r--r-- | test/books/glossary/GLOSSARY.md | 9 | ||||
-rw-r--r-- | test/books/glossary/README.md | 8 | ||||
-rw-r--r-- | test/books/glossary/SUMMARY.md | 1 | ||||
-rw-r--r-- | test/glossary.js | 20 | ||||
-rw-r--r-- | test/json.js | 8 |
5 files changed, 44 insertions, 2 deletions
diff --git a/test/books/glossary/GLOSSARY.md b/test/books/glossary/GLOSSARY.md new file mode 100644 index 0000000..fa706f1 --- /dev/null +++ b/test/books/glossary/GLOSSARY.md @@ -0,0 +1,9 @@ +# Glossary + +## test + +Just a simple and easy to understand test. + +## hakunamatata + +This word is not present in the content. diff --git a/test/books/glossary/README.md b/test/books/glossary/README.md new file mode 100644 index 0000000..50e8d4c --- /dev/null +++ b/test/books/glossary/README.md @@ -0,0 +1,8 @@ +# Readme + +The word test should be replaced by a glossary link. + +``` +But the word test should not be replaced in code blocks +``` + diff --git a/test/books/glossary/SUMMARY.md b/test/books/glossary/SUMMARY.md new file mode 100644 index 0000000..ac9323c --- /dev/null +++ b/test/books/glossary/SUMMARY.md @@ -0,0 +1 @@ +# Summary diff --git a/test/glossary.js b/test/glossary.js new file mode 100644 index 0000000..16ab0fc --- /dev/null +++ b/test/glossary.js @@ -0,0 +1,20 @@ +var fs = require('fs'); +var path = require('path'); + +describe('Glossary', function () { + describe('Parsing', function() { + var book; + + before(function() { + return books.parse("glossary", "website") + .then(function(_book) { + book = _book; + }); + }); + + it('should correctly list items', function() { + book.should.have.property("glossary"); + book.glossary.should.have.lengthOf(2); + }); + }); +}); diff --git a/test/json.js b/test/json.js index 56483c6..0e50237 100644 --- a/test/json.js +++ b/test/json.js @@ -60,12 +60,16 @@ describe('JSON generator', function () { }); }); - it('should correctly output a README.json', function() { + it('should correctly output READMEs', function() { book.should.have.file("README.json"); + book.should.have.file("en/README.json"); + book.should.have.file("fr/README.json"); }); - it('should output a valid json', function() { + it('should output valid json', function() { book.should.have.jsonfile("README.json"); + book.should.have.jsonfile("en/README.json"); + book.should.have.jsonfile("fr/README.json"); }); describe('Page Format', function() { |