2011-07-17 08:05:43 +00:00
|
|
|
'use strict';
|
|
|
|
|
|
2011-02-15 06:12:45 +00:00
|
|
|
describe('$document', function() {
|
|
|
|
|
|
|
|
|
|
|
2011-10-17 23:56:56 +00:00
|
|
|
it("should inject $document", inject(function($document) {
|
|
|
|
|
expect($document).toEqual(jqLite(document));
|
|
|
|
|
}));
|
2011-02-15 06:12:45 +00:00
|
|
|
});
|