Próbuję odgiąć metodę przy użyciu sinon.js, ale pojawia się następujący błąd:
Uncaught TypeError: Attempted to wrap undefined property sample_pressure as function
Poszedłem również do tego pytania ( Stubbing i / lub mocking a class in sinon.js? ) I skopiowałem i wkleiłem kod, ale pojawia się ten sam błąd.
Oto mój kod:
Sensor = (function() {
// A simple Sensor class
// Constructor
function Sensor(pressure) {
this.pressure = pressure;
}
Sensor.prototype.sample_pressure = function() {
return this.pressure;
};
return Sensor;
})();
// Doesn't work
var stub_sens = sinon.stub(Sensor, "sample_pressure").returns(0);
// Doesn't work
var stub_sens = sinon.stub(Sensor, "sample_pressure", function() {return 0});
// Never gets this far
console.log(stub_sens.sample_pressure());
Tutaj jest jsFiddle ( http://jsfiddle.net/pebreo/wyg5f/5/ ) dla powyższego kodu i jsFiddle dla pytania SO, o którym wspomniałem ( http://jsfiddle.net/pebreo/9mK5d/1/ ).
I się, że to sinon w Zasoby zewnętrzne w jsFiddle i nawet jQuery 1.9. Co ja robię źle?