gorm/gitbook/test/exports.js
2016-03-08 12:18:56 +08: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();
});
});