作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在使用 Coffeescript,我正在使用 Sinon.js 进行测试。在测试调用它覆盖的方法的方法时,我如何 stub 对 super()
的调用?
例如,我要测试的方法(backbone.js 模型):
class Whatever extends Model
validate: (attributes) ->
validationErrors = super(attributes)
...
validationErrors
super()
使用给定的属性调用并且 validate 返回验证错误
super()
返回。
最佳答案
像这样:
it 'calls super and returns its result', ->
whatever = new Whatever()
attributes = sinon.stub()
superValidateStub = sinon.mock(Whatever.__super__)
superValidateStub.expects('validate').withExactArgs(attributes).returns('VALIDATION_RESULT')
expect(whatever.validate(attributes)).to.eql('VALIDATION_RESULT')
superValidateStub.verify()
关于coffeescript - 如何用 Sinon stub super() 调用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16562116/
我是一名优秀的程序员,十分优秀!