このスペック出力を実行すると、「Expected 0 to equal 2.」が表示されます。2 はフィクスチャのモデル オブジェクトの正しい長さであるため、Sinon の fakeServer はモックされた応答で適切に応答しています。フェッチ後にコレクションにオブジェクトがない理由がわかりません。どんな助けでも本当に感謝します!
参考までに: これは、バックボーン シノン + ジャスミンのチュートリアル ( http://tinnedfruit.com/2011/03/25/testing-backbone-apps-with-jasmine-sinon-2.html ) に沿って作成したものです。
仕様:
describe "Todos collection", ->
describe "when fetching models from the server", ->
beforeEach ->
@todo = sinon.stub(window, "Todo")
@todos = new Todos()
@fixture = @fixtures.Todos.valid
@server = sinon.fakeServer.create()
@server.respondWith "GET", "/todos", @validResponse(@fixture)
afterEach ->
@todo.restore()
@server.restore()
it "should parse todos from the response", ->
@todos.fetch()
@server.respond()
expect(@todos.length).toEqual @fixture.response.todos.length
モデル:
class window.Todos extends Backbone.Collection
model: window.Todo
url: "/todos"
comparator: (todo) ->
todo.get('priority')
parse: (res) ->
res.response.todos
編集:
以下の Buck Doyle は、仕様上の問題がないことを確認するのに役立ちました。Jasmine ヘッドレス Webkit 構成に何らかの問題があり、仕様が Jasmine スタンドアロンで実行されている場合は合格です。