Skip to content

Instantly share code, notes, and snippets.

@ppcano
Created November 24, 2011 19:30
Show Gist options
  • Save ppcano/1392077 to your computer and use it in GitHub Desktop.
Save ppcano/1392077 to your computer and use it in GitHub Desktop.
Observing failing test ( don't understand something ??? )
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