I have a Backbone Model:
class DateTimeSelector extends Backbone.Model
initialize: ->
@bind 'change:date', @updateDatetime
@bind 'change:time', @updateDatetime
updateDatetime: =>
# do some stuff with the sate and time
And I have some tests for that code using jasmin and sinon.js
describe "DateTimeSelector", ->
beforeEach ->
@datetime = new DateTimeSelector()
describe "updateDatetime", ->
beforeEach ->
@updateSpy = sinon.spy(@datetime, 'updateDatetime')
afterEach ->
@datetime.updateDatetime.restore()
# passes
it "should be called when we call it", ->
@datetime.updateDatetime()
expect(@updateSpy).toHaveBeenCalledOnce()
# fails
it "should be called when we trigger it", ->
@datetime.trigger 'change:date'
expect(@updateSpy).toHaveBeenCalled()
# fails
it "should be called when we set the date", ->
@datetime.set { date: new Date() }
expect(@updateSpy).toHaveBeenCalled()
It seems to work when I use it in the browser but I can't seem to get the tests to pass. Can anyone enlighten me?
coffeescript. I would have added it for you but you're maxed at 5 and I didn't want to decide which one to replace for you. – Kai Dec 9 '11 at 6:18@updateDatetimeis the one you expected, not if it called, cause this is the functionality you get from backbone and you must trust them that they've test their stuff. – Andreas Köberle Dec 10 '11 at 16:27