diff options
author | Samy Pessé <samypesse@gmail.com> | 2016-04-27 14:11:45 +0200 |
---|---|---|
committer | Samy Pessé <samypesse@gmail.com> | 2016-04-27 14:11:45 +0200 |
commit | a9d558e89181b3b18151f6344a309ea444526e03 (patch) | |
tree | e8a870fb54453aeb5185816352e8afc6ba42788c /lib/models/__tests__/summary.js | |
parent | 8291eb58dffad58ab51abcdf13bc9cfd96d30b91 (diff) | |
download | gitbook-a9d558e89181b3b18151f6344a309ea444526e03.zip gitbook-a9d558e89181b3b18151f6344a309ea444526e03.tar.gz gitbook-a9d558e89181b3b18151f6344a309ea444526e03.tar.bz2 |
Add method ".toText" on glossary and summary
Diffstat (limited to 'lib/models/__tests__/summary.js')
-rw-r--r-- | lib/models/__tests__/summary.js | 9 |
1 files changed, 9 insertions, 0 deletions
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'); + }); + }); + }); }); |