16 lines
495 B
JavaScript
Raw Normal View History

2015-09-06 12:39:19 +01:00
module.exports.all = function (test, common) {
test('Store a valid record', function (t) {
common.setup(test, function (err, recordStore) {
t.ifError(err, 'Should not throw')
t.pass('woo')
})
})
test('Store an unvalid record')
test('Store and retrieve a valid record')
test('Store a bunch of valid and unvalid records and check what gets retrieved')
test('Store a bunch of records with variable validity, wait for some to expire, check what gets retrieved')
}