You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
368 B
11 lines
368 B
var support = require('../support');
|
|
var memory_store = require('../../lib/stores/memory');
|
|
|
|
describe("memory store", function () {
|
|
describe("instantiating", function () {
|
|
it("lets us pass in no args", function (done) {
|
|
var memory_cache = memory_store.create();
|
|
support.test_set_get_del(memory_cache, done);
|
|
});
|
|
});
|
|
});
|
|
|