1.0.0 • Published 7 years ago

muk-prop-2 v1.0.0

Weekly downloads
1
License
MIT
Repository
github
Last release
7 years ago

muk-prop.js

Build Status Dependency Status codecov

muk

Usage

Object method mocking.

var fs = require('fs');
var muk = require('muk-prop');

muk(fs, 'readFile', function(path, callback) {
  process.nextTick(callback.bind(null, null, 'file contents here'));
});

Check if member has been mocked.

muk.isMocked(fs, 'readFile'); // true

Restore all mocked methods after tests.

muk.restore();

fs.readFile(file, function(err, data) {
  // will actually read from `file`
});

Install

npm install muk-prop

Tests

Tests are written with mocha

npm test

too License

MIT

muk-prop npm cdn at unpkg