angular.js/test/AngularSpec.js
2010-02-09 14:59:24 -08:00

10 lines
No EOL
334 B
JavaScript

describe('Angular', function(){
it('should fire on updateEvents', function(){
var onUpdateView = jasmine.createSpy();
var scope = angular.compile("<div></div>", { onUpdateView: onUpdateView });
expect(onUpdateView).wasNotCalled();
scope.init();
scope.updateView();
expect(onUpdateView).wasCalled();
});
});