dbjs-persistence
Version:
Persistence for dbjs
15 lines (12 loc) • 449 B
JavaScript
;
var Driver = require('../driver');
module.exports = function (t, a) {
var db = new Driver(), storage = db.getStorage('base');
a.throws(function () { t(); }, TypeError);
a.throws(function () { t(null); }, TypeError);
a.throws(function () { t(true); }, TypeError);
a.throws(function () { t('sdfss'); }, TypeError);
a.throws(function () { t({}); }, TypeError);
a.throws(function () { t(storage); }, TypeError);
a(t(db), db);
};