mirror of
https://github.com/Hopiu/angular.js.git
synced 2026-03-18 23:50:23 +00:00
18 lines
283 B
JavaScript
18 lines
283 B
JavaScript
|
|
describe('$document', function() {
|
||
|
|
var scope;
|
||
|
|
|
||
|
|
beforeEach(function(){
|
||
|
|
scope = angular.scope();
|
||
|
|
});
|
||
|
|
|
||
|
|
|
||
|
|
afterEach(function(){
|
||
|
|
dealoc(scope);
|
||
|
|
});
|
||
|
|
|
||
|
|
|
||
|
|
it("should inject $document", function(){
|
||
|
|
expect(scope.$service('$document')).toEqual(jqLite(document));
|
||
|
|
});
|
||
|
|
});
|