summaryrefslogtreecommitdiffstats
path: root/test/configuration.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/configuration.js')
-rw-r--r--test/configuration.js14
1 files changed, 0 insertions, 14 deletions
diff --git a/test/configuration.js b/test/configuration.js
deleted file mode 100644
index e690f2c..0000000
--- a/test/configuration.js
+++ /dev/null
@@ -1,14 +0,0 @@
-var path = require('path');
-var assert = require('assert');
-
-var Book = require('../').Book;
-
-describe('Configuration parsing', function () {
- it('should correctly load from json', function() {
- assert(books[0].options.title == "Test");
- });
-
- it('should correctly load from javascript', function() {
- assert(books[4].options.title == "Test 2");
- });
-});