homebridge-gsh-kazari
Version:
13 lines (9 loc) • 337 B
JavaScript
var PostgresAdapter = require('../../lib/stores/PostgresAdapter');
function MockPostgresAdapter(opts) {
opts.verbose = false;
opts.username = 'diamond';
opts.dbname = 'diamond';
PostgresAdapter.call(this, opts);
}
MockPostgresAdapter.prototype = Object.create(PostgresAdapter.prototype);
module.exports = MockPostgresAdapter;