Files
gitbook/test/exports.js
T
2016-02-29 09:14:43 +01:00

13 lines
321 B
JavaScript

var should = require('should');
var gitbook = require('../');
describe('Exports', function() {
it('should export the Book class', function() {
should(gitbook.Book).be.a.Function();
});
it('should export the list of commands', function() {
should(gitbook.commands).be.an.Array();
});
});