aboutsummaryrefslogtreecommitdiffstats
path: root/src/angular-mocks.js
diff options
context:
space:
mode:
authorIgor Minar2011-06-06 14:44:49 -0700
committerIgor Minar2011-06-06 23:10:28 -0700
commit3069566073ef07700dc29714f74dd6f2069caf90 (patch)
treed406f77758faf780c32bf14b5bc2be7c960a7664 /src/angular-mocks.js
parentbd9a7b9fd71147113a08d8e5736024a8cd6f1979 (diff)
downloadangular.js-3069566073ef07700dc29714f74dd6f2069caf90.tar.bz2
api doc fixes from ken
Diffstat (limited to 'src/angular-mocks.js')
-rw-r--r--src/angular-mocks.js17
1 files changed, 12 insertions, 5 deletions
diff --git a/src/angular-mocks.js b/src/angular-mocks.js
index f0313b25..ba7f7461 100644
--- a/src/angular-mocks.js
+++ b/src/angular-mocks.js
@@ -57,14 +57,21 @@
/**
+ * @workInProgress
* @ngdoc overview
* @name angular.mock
- * @namespace Namespace for all built-in angular mocks.
- *
* @description
- * `angular.mock` is a namespace for all built-in mocks that ship with angular and automatically
- * replace real services if `angular-mocks.js` file is loaded after `angular.js` and before any
- * tests.
+ *
+ * The `angular.mock` object is a namespace for all built-in mock services that ship with angular.
+ * It automatically replaces real services if the `angular-mocks.js` file is loaded after
+ * `angular.js` and before any tests.
+ *
+ * Built-in mocks:
+ *
+ * * {@link angular.Mock.service.$browser $browser } - A mock implementation of the browser.
+ * * {@link angular.Mock.service.$exceptionHandler $exceptionHandler } - A mock implementation of the
+ * angular service exception handler.
+ * * {@link angular.Mock.service.$log $log } - A mock implementation of the angular service log.
*/
angular.mock = {};