1.0.0 • Published 11 years ago

docparse-model-stub v1.0.0

Weekly downloads
3
License
-
Repository
github
Last release
11 years ago

Stub out the database with an in-memory store for tests involving a docparse model

Build Status Dependency Status Dependency tracking by David

Usage

/**
 * Stub out your model by requiring it via docparse-model-stub. Now since docparse-upload is cached,
 * future calls to require('docparse-upload') will load the mocked version
 **/
var Upload = require('docparse-model-stub')('docparse-upload');
var upload = new Upload();
upload.status = 'dummy status';
upload.hash = 'dummy hash';
upload.supplier_code = 'dummy supplier code';
upload.supplier = new ObjectId();
upload.save(function (err) {
  // note that save will complete even though we have not connected mongoose to a database
  should.not.exist(err, 'error saving upload: ' + err);
  cb(null, upload);
});

Installation

npm install docparse-model-stub