angular.js/test/directive/ngInitSpec.js

17 lines
299 B
JavaScript
Raw Normal View History

'use strict';
2012-03-09 08:00:05 +00:00
describe('ng-init', function() {
var element;
afterEach(function() {
dealoc(element);
});
2012-03-09 08:00:05 +00:00
it("should ng-init", inject(function($rootScope, $compile) {
element = $compile('<div ng-init="a=123"></div>')($rootScope);
expect($rootScope.a).toEqual(123);
}));
});