mirror of
https://github.com/seejohnrun/haste-server.git
synced 2025-12-13 04:35:56 +00:00
Upgrade testing libraries
- Upgrade mocha - Remove should due to limited usage and old style (at least by rspec standards) - Move spec -> test which is the default - Update tests accordingly for the above
This commit is contained in:
26
test/document_handler_spec.js
Normal file
26
test/document_handler_spec.js
Normal file
@@ -0,0 +1,26 @@
|
||||
/* global describe, it */
|
||||
|
||||
var assert = require('assert');
|
||||
|
||||
var DocumentHandler = require('../lib/document_handler');
|
||||
var Generator = require('../lib/key_generators/random');
|
||||
|
||||
describe('document_handler', function() {
|
||||
|
||||
describe('randomKey', function() {
|
||||
|
||||
it('should choose a key of the proper length', function() {
|
||||
var gen = new Generator();
|
||||
var dh = new DocumentHandler({ keyLength: 6, keyGenerator: gen });
|
||||
assert.equal(6, dh.acceptableKey().length);
|
||||
});
|
||||
|
||||
it('should choose a default key length', function() {
|
||||
var gen = new Generator();
|
||||
var dh = new DocumentHandler({ keyGenerator: gen });
|
||||
assert.equal(dh.keyLength, DocumentHandler.defaultKeyLength);
|
||||
});
|
||||
|
||||
});
|
||||
|
||||
});
|
||||
Reference in New Issue
Block a user