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