# muk-prop.js
|
|
[](http://travis-ci.org/fent/muk-prop.js)
|
[](https://david-dm.org/fent/muk-prop.js)
|
[](https://codecov.io/gh/fent/muk-prop.js)
|
|

|
|
# Usage
|
|
Object method mocking.
|
|
```js
|
const fs = require('fs');
|
const muk = require('muk-prop');
|
|
muk(fs, 'readFile', (path, callback) => {
|
process.nextTick(callback.bind(null, null, 'file contents here'));
|
});
|
```
|
|
Check if member has been mocked.
|
|
```js
|
muk.isMocked(fs, 'readFile'); // true
|
```
|
|
Restore all mocked methods after tests.
|
|
```js
|
muk.restore();
|
|
fs.readFile(file, (err, data) => {
|
// will actually read from `file`
|
});
|
```
|
|
|
# Install
|
|
npm install muk-prop
|
|
|
# Tests
|
Tests are written with [mocha](https://mochajs.org)
|
|
```bash
|
npm test
|
```
|