diff options
Diffstat (limited to 'test/parse.js')
-rw-r--r-- | test/parse.js | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/test/parse.js b/test/parse.js deleted file mode 100644 index dca780e..0000000 --- a/test/parse.js +++ /dev/null @@ -1,24 +0,0 @@ -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; - }); - }); - -}); - |