如何存根以下虚构架构的实例方法bark
?
var dogSchema = mongoose.Schema({
// ...
});
dogSchema.methods = {
bark() { console.log('Woof!') },
};
例如,如果我想测试以下函数barkOne()
:
function barkOne() {
Dog.findOne().exec().then(dog => dog.bark());
}
我怎样才能将它存根,以便像这样进行测试?
describe('barkOne', () =>
it('should make all dogs bark', () => {
barkOne().then(() => {
assert(barkStub.calledOnce);
});
})
});
谢谢!
答案 0 :(得分:0)
从mongoose 4.4.5开始,我能够使用Model.prototype
存根方法。 e.g。
const stub = sandbox.stub(Dog.prototype, 'bark');
Dog.findOne().exec().then(dog => {
// dog[0].bark === stub
})