aboutsummaryrefslogtreecommitdiffstats
path: root/app/bower_components/angular-mocks
diff options
context:
space:
mode:
authorEran (ev672n), Vosk <ev672n@att.com>2018-10-29 18:38:10 +0200
committerEran (ev672n), Vosk <ev672n@att.com>2018-10-29 18:38:10 +0200
commitbb60d2fc7c06ec661e4c66ac8778e1f2070103cd (patch)
tree2497848e3667f0ec99b2bea61e129c52dd37db60 /app/bower_components/angular-mocks
parentbdc15ad66739869abef7413e5da40191875781d1 (diff)
Sync the code between repositories Change-Id: Ic431c58c68716b6d401954fb854a183e0d222f57 Issue-ID: SDC-1874 Signed-off-by: Eran (ev672n), Vosk <ev672n@att.com>
Diffstat (limited to 'app/bower_components/angular-mocks')
-rw-r--r--app/bower_components/angular-mocks/.bower.json19
-rw-r--r--app/bower_components/angular-mocks/README.md63
-rw-r--r--app/bower_components/angular-mocks/bower.json9
-rw-r--r--app/bower_components/angular-mocks/package.json27
4 files changed, 118 insertions, 0 deletions
diff --git a/app/bower_components/angular-mocks/.bower.json b/app/bower_components/angular-mocks/.bower.json
new file mode 100644
index 0000000..87b26b7
--- /dev/null
+++ b/app/bower_components/angular-mocks/.bower.json
@@ -0,0 +1,19 @@
+{
+ "name": "angular-mocks",
+ "version": "1.4.0",
+ "main": "./angular-mocks.js",
+ "ignore": [],
+ "dependencies": {
+ "angular": "1.4.0"
+ },
+ "homepage": "https://github.com/angular/bower-angular-mocks",
+ "_release": "1.4.0",
+ "_resolution": {
+ "type": "version",
+ "tag": "v1.4.0",
+ "commit": "5a7f9f0bad5da4314df7f638fcaf330ff864cae2"
+ },
+ "_source": "https://github.com/angular/bower-angular-mocks.git",
+ "_target": "1.4.0",
+ "_originalSource": "angular-mocks"
+} \ No newline at end of file
diff --git a/app/bower_components/angular-mocks/README.md b/app/bower_components/angular-mocks/README.md
new file mode 100644
index 0000000..440cce9
--- /dev/null
+++ b/app/bower_components/angular-mocks/README.md
@@ -0,0 +1,63 @@
+# packaged angular-mocks
+
+This repo is for distribution on `npm` and `bower`. The source for this module is in the
+[main AngularJS repo](https://github.com/angular/angular.js/tree/master/src/ngMock).
+Please file issues and pull requests against that repo.
+
+## Install
+
+You can install this package either with `npm` or with `bower`.
+
+### npm
+
+```shell
+npm install angular-mocks
+```
+
+You can `require` ngMock modules:
+
+```js
+var angular = require('angular');
+angular.module('myMod', [
+ require('angular-animate'),
+ require('angular-mocks/ngMock')
+ require('angular-mocks/ngAnimateMock')
+]);
+```
+
+### bower
+
+```shell
+bower install angular-mocks
+```
+
+The mocks are then available at `bower_components/angular-mocks/angular-mocks.js`.
+
+## Documentation
+
+Documentation is available on the
+[AngularJS docs site](https://docs.angularjs.org/guide/unit-testing).
+
+## License
+
+The MIT License
+
+Copyright (c) 2010-2015 Google, Inc. http://angularjs.org
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in
+all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+THE SOFTWARE.
diff --git a/app/bower_components/angular-mocks/bower.json b/app/bower_components/angular-mocks/bower.json
new file mode 100644
index 0000000..73aae58
--- /dev/null
+++ b/app/bower_components/angular-mocks/bower.json
@@ -0,0 +1,9 @@
+{
+ "name": "angular-mocks",
+ "version": "1.4.0",
+ "main": "./angular-mocks.js",
+ "ignore": [],
+ "dependencies": {
+ "angular": "1.4.0"
+ }
+}
diff --git a/app/bower_components/angular-mocks/package.json b/app/bower_components/angular-mocks/package.json
new file mode 100644
index 0000000..64bbd9c
--- /dev/null
+++ b/app/bower_components/angular-mocks/package.json
@@ -0,0 +1,27 @@
+{
+ "name": "angular-mocks",
+ "version": "1.4.0",
+ "description": "AngularJS mocks for testing",
+ "main": "angular-mocks.js",
+ "scripts": {
+ "test": "echo \"Error: no test specified\" && exit 1"
+ },
+ "repository": {
+ "type": "git",
+ "url": "https://github.com/angular/angular.js.git"
+ },
+ "keywords": [
+ "angular",
+ "framework",
+ "browser",
+ "mocks",
+ "testing",
+ "client-side"
+ ],
+ "author": "Angular Core Team <angular-core+npm@google.com>",
+ "license": "MIT",
+ "bugs": {
+ "url": "https://github.com/angular/angular.js/issues"
+ },
+ "homepage": "http://angularjs.org"
+}