summaryrefslogtreecommitdiffstats
path: root/lib/__tests__/gitbook.js
blob: c3669bb9640bc4fb0f29c9cdfda77a807cc35af2 (plain)
1
2
3
4
5
6
7
8
9
var gitbook = require('../gitbook');

describe('satisfies', function() {

    it('should return true for *', function() {
        expect(gitbook.satisfies('*')).toBe(true);
    });

});