angular.js/test/AngularSpec.js

10 lines
334 B
JavaScript
Raw Normal View History

2010-02-09 22:59:24 +00:00
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();
});
});