summaryrefslogtreecommitdiffstats
path: root/test/exports.js
blob: ae298dc10b155cf1c7d005008860499c063105f9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
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();
    });
});