summaryrefslogtreecommitdiffstats
path: root/test/languages.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/languages.js')
-rw-r--r--test/languages.js13
1 files changed, 5 insertions, 8 deletions
diff --git a/test/languages.js b/test/languages.js
index abdc5dd..0bde347 100644
--- a/test/languages.js
+++ b/test/languages.js
@@ -1,8 +1,5 @@
-var fs = require('fs');
-var path = require('path');
-
-describe('Languages', function () {
- describe('Parsing', function() {
+describe("Languages", function () {
+ describe("Parsing", function() {
var book;
before(function() {
@@ -12,7 +9,7 @@ describe('Languages', function () {
});
});
- it('should correctly list languages', function() {
+ it("should correctly list languages", function() {
book.should.have.property("books");
book.books.should.have.lengthOf(2);
@@ -21,7 +18,7 @@ describe('Languages', function () {
});
});
- describe('Generation', function() {
+ describe("Generation", function() {
var book;
before(function() {
@@ -31,7 +28,7 @@ describe('Languages', function () {
});
});
- it('should correctly create books', function() {
+ it("should correctly create books", function() {
book.should.have.file("index.html");
book.should.have.file("en/index.html");
book.should.have.file("fr/index.html");