Created
November 24, 2011 19:30
-
-
Save ppcano/1392077 to your computer and use it in GitHub Desktop.
Observing failing test ( don't understand something ??? )
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
test("Observes data... ", function() { | |
var count = 0; | |
//var model = SC.IO.Resource.create({ | |
var model = SC.Object.create({ | |
data: null | |
}); | |
SC.addObserver(model, 'data', function() { count++; }); | |
var data = [{ "id": 5 }, {"id":6}]; | |
SC.run( function(){ | |
//model.updateData(data); | |
set(model, 'data', data); | |
}); | |
equals(count, 1, 'should have invoked observer '); | |
SC.run( function(){ | |
//model.updateData(data); | |
set(model, 'data', data); | |
}); | |
equals(count, 2, 'should have invoked observer again '); | |
}); | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment