Code coverage report for api/corpus/PsycholinguisticsDatabase.js

Statements: 55.56% (5 / 9)      Branches: 0% (0 / 2)      Functions: 0% (0 / 1)      Lines: 55.56% (5 / 9)      Ignored: none     

All files » api/corpus/ » PsycholinguisticsDatabase.js
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 231   1             1   1                   1  
var FieldDBDatabase = require("./Database").Database;
 
var PsycholinguisticsDatabase = function PsycholinguisticsDatabase(options) {
  if (!this._fieldDBtype) {
    this._fieldDBtype = "PsycholinguisticsDatabase";
  }
  this.debug("In PsycholinguisticsDatabase ", options);
  FieldDBDatabase.apply(this, arguments);
};
var DEFAULT_COLLECTION_MAPREDUCE = "/_design/psycholinguistics/_view/COLLECTION?descending=true";
 
PsycholinguisticsDatabase.prototype = Object.create(FieldDBDatabase.prototype, /** @lends PsycholinguisticsDatabase.prototype */ {
  constructor: {
    value: PsycholinguisticsDatabase
  },
 
  DEFAULT_COLLECTION_MAPREDUCE: {
    value: DEFAULT_COLLECTION_MAPREDUCE
  }
});
 
exports.PsycholinguisticsDatabase = PsycholinguisticsDatabase;