You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
495 B
19 lines
495 B
var DocumentHandler = require('../lib/document_handler'); |
|
|
|
describe('document_handler', function() { |
|
|
|
describe('randomKey', function() { |
|
|
|
it('should choose a key of the proper length', function() { |
|
var dh = new DocumentHandler({ keyLength: 6 }); |
|
expect(dh.randomKey().length).toBe(6); |
|
}); |
|
|
|
it('should choose a default key length', function() { |
|
var dh = new DocumentHandler(); |
|
expect(dh.keyLength).toBe(DocumentHandler.defaultKeyLength); |
|
}); |
|
|
|
}); |
|
|
|
});
|
|
|