mirror of
https://github.com/Hopiu/angular.js.git
synced 2026-04-10 01:51:00 +00:00
17 lines
299 B
JavaScript
17 lines
299 B
JavaScript
|
|
'use strict';
|
||
|
|
|
||
|
|
describe('ng:init', function() {
|
||
|
|
var element;
|
||
|
|
|
||
|
|
|
||
|
|
afterEach(function() {
|
||
|
|
dealoc(element);
|
||
|
|
});
|
||
|
|
|
||
|
|
|
||
|
|
it("should ng:init", inject(function($rootScope, $compile) {
|
||
|
|
element = $compile('<div ng:init="a=123"></div>')($rootScope);
|
||
|
|
expect($rootScope.a).toEqual(123);
|
||
|
|
}));
|
||
|
|
});
|