This commit is contained in:
David Dias 2015-09-06 14:38:38 +01:00
parent c24e285275
commit 987474b014

View File

@ -71,9 +71,14 @@ module.exports.all = function (test, common) {
recordStore.put('bananas', mdagObj_record_signature, function (err) {
t.ifError(err, 'Should not throw')
recordStore.get('bananas', function (err, records) {
t.ifError(err, 'Should not throw')
t.equal(records.length, 1)
t.pass('record was stored successfully')
t.end()
})
})
})
})