summaryrefslogtreecommitdiffstats
path: root/lib/models/__tests__
diff options
context:
space:
mode:
authorSamy Pessé <samypesse@gmail.com>2016-04-27 14:11:45 +0200
committerSamy Pessé <samypesse@gmail.com>2016-04-27 14:11:45 +0200
commita9d558e89181b3b18151f6344a309ea444526e03 (patch)
treee8a870fb54453aeb5185816352e8afc6ba42788c /lib/models/__tests__
parent8291eb58dffad58ab51abcdf13bc9cfd96d30b91 (diff)
downloadgitbook-a9d558e89181b3b18151f6344a309ea444526e03.zip
gitbook-a9d558e89181b3b18151f6344a309ea444526e03.tar.gz
gitbook-a9d558e89181b3b18151f6344a309ea444526e03.tar.bz2
Add method ".toText" on glossary and summary
Diffstat (limited to 'lib/models/__tests__')
-rw-r--r--lib/models/__tests__/glossary.js31
-rw-r--r--lib/models/__tests__/summary.js9
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');
+ });
+ });
+ });
});