diff options
Diffstat (limited to 'lib/models/__tests__')
-rw-r--r-- | lib/models/__tests__/glossary.js | 31 | ||||
-rw-r--r-- | lib/models/__tests__/summary.js | 9 |
2 files changed, 29 insertions, 11 deletions
diff --git a/lib/models/__tests__/glossary.js b/lib/models/__tests__/glossary.js index 0345627..2ce224c 100644 --- a/lib/models/__tests__/glossary.js +++ b/lib/models/__tests__/glossary.js @@ -5,18 +5,18 @@ describe('Glossary', function() { var Glossary = require('../glossary'); var GlossaryEntry = require('../glossaryEntry'); - describe('createFromEntries', function() { - var glossary = Glossary.createFromEntries(File(), [ - { - name: 'Hello World', - description: 'Awesome!' - }, - { - name: 'JavaScript', - description: 'This is a cool language' - } - ]); + var glossary = Glossary.createFromEntries(File(), [ + { + name: 'Hello World', + description: 'Awesome!' + }, + { + name: 'JavaScript', + description: 'This is a cool language' + } + ]); + describe('createFromEntries', function() { it('must add all entries', function() { var entries = glossary.getEntries(); expect(entries.size).toBe(2); @@ -28,6 +28,15 @@ describe('Glossary', function() { expect(entry instanceof GlossaryEntry).toBeTruthy(); }); }); + + describe('toText', function() { + pit('return as markdown', function() { + return glossary.toText('.md') + .then(function(text) { + expect(text).toContain('# Glossary'); + }); + }); + }); }); diff --git a/lib/models/__tests__/summary.js b/lib/models/__tests__/summary.js index b808307..e7b496e 100644 --- a/lib/models/__tests__/summary.js +++ b/lib/models/__tests__/summary.js @@ -68,6 +68,15 @@ describe('Summary', function() { expect(article.getTitle()).toBe('My Second Article'); }); }); + + describe('toText', function() { + pit('return as markdown', function() { + return summary.toText('.md') + .then(function(text) { + expect(text).toContain('# Summary'); + }); + }); + }); }); |