测试 backbone 事件哈希

Testing backbone event-hash

我需要在 Backbone 的 event-hash 中应用 "special" 函数调用,其中同一个事件侦听器在我的 Backbone 视图中触发两个独立的方法。然而,当检查我的代码覆盖率时,这个特定的代码片段是未经测试的。

我正在使用 mochachaisinonjs

我想知道是否有人知道如何测试这个特殊案例?

events: {
        "focus #new-comment": function (e) {
            this.revealButtons(e);
            this._cancelZoom(e);
        },
}

这有帮助吗?

events: {
    "focus #new-comment": "_onFocusNewComment",
},

_onFocusNewComment: function (e) {
    this.revealButtons(e);
    this._cancelZoom(e);
}