angular.js/test/service/documentSpec.js
2011-10-11 11:01:46 -07:00

19 lines
301 B
JavaScript

'use strict';
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));
});
});