summaryrefslogtreecommitdiffstats
path: root/test/configuration.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/configuration.js')
-rw-r--r--test/configuration.js37
1 files changed, 0 insertions, 37 deletions
diff --git a/test/configuration.js b/test/configuration.js
deleted file mode 100644
index d30fd61..0000000
--- a/test/configuration.js
+++ /dev/null
@@ -1,37 +0,0 @@
-describe('Configuration', function () {
- it('should extract default title from README', function() {
- return books.parse('basic')
- .then(function(book) {
- book.options.title.should.be.equal('Readme');
- });
- });
-
- it('should extract default description from README', function() {
- return books.parse('basic')
- .then(function(book) {
- book.options.description.should.be.equal('Default description for the book.');
- });
- });
-
- it('should correctly load from json (book.json)', function() {
- return books.parse('config-json')
- .then(function(book) {
- book.options.title.should.be.equal('json-config');
- });
- });
-
- it('should correctly load from JavaScript (book.js)', function() {
- return books.parse('config-js')
- .then(function(book) {
- book.options.title.should.be.equal('js-config');
- });
- });
-
- it('should provide configuration on book.config.get', function() {
- return books.parse('basic')
- .then(function(book) {
- book.config.get('description').should.be.equal('Default description for the book.');
- book.getConfig('description').should.be.equal('Default description for the book.');
- });
- });
-});