Start in on the tests

This commit is contained in:
John Crepezzi 2011-11-28 16:46:59 -05:00
parent 43e5667ff9
commit 565830214b
2 changed files with 26 additions and 9 deletions

View 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);
});
});
});