diff options
Diffstat (limited to 'lib/models/__tests__/glossary.js')
-rw-r--r-- | lib/models/__tests__/glossary.js | 31 |
1 files changed, 20 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'); + }); + }); + }); }); |