Sinon Example 1
by pebreo
HTML
<script src="http://sinonjs.org/releases/sinon-1.7.3.js"></script>
JavaScript
wrapper = (function() {
function wrapper() {}
//wrapper.db = require("database");
wrapper.prototype.insertUser = function(doc) {
return 'hello';
};
return wrapper;
})();
stub = sinon.stub(wrapper , 'insertUser', function () { return 'hola'; });
console.log(stub.insertUser());