mirror of
https://github.com/seejohnrun/haste-server.git
synced 2024-11-01 11:31:22 +00:00
20 lines
495 B
JavaScript
20 lines
495 B
JavaScript
|
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);
|
||
|
});
|
||
|
|
||
|
});
|
||
|
|
||
|
});
|