All files / db rethinkdbdash.js

100% Statements 3/3
100% Branches 0/0
100% Functions 0/0
100% Lines 3/3
1 2 3 4 5 6 7 8 9 10 11    2x   2x   2x        
export default class RethinkDBHashDriver {
 
  constructor(dbOptions, userTableName) {
    // RethinkDBHashDriver takes just the instance as the options object
    this.r = dbOptions;
 
    this.users = this.r.table(userTableName);
  }
 
}