angular.js/test/ng/directive/ngInitSpec.js

17 lines
301 B
JavaScript
Raw Normal View History

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