Start in on the tests
This commit is contained in:
parent
43e5667ff9
commit
565830214b
2 changed files with 26 additions and 9 deletions
19
spec/document_handler_spec.js
Normal file
19
spec/document_handler_spec.js
Normal file
|
@ -0,0 +1,19 @@
|
|||
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);
|
||||
});
|
||||
|
||||
});
|
||||
|
||||
});
|
Loading…
Add table
Add a link
Reference in a new issue