aboutsummaryrefslogtreecommitdiffstats
path: root/test/loaderSpec.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/loaderSpec.js')
-rw-r--r--test/loaderSpec.js6
1 files changed, 6 insertions, 0 deletions
diff --git a/test/loaderSpec.js b/test/loaderSpec.js
index 302852cb..2a564115 100644
--- a/test/loaderSpec.js
+++ b/test/loaderSpec.js
@@ -72,4 +72,10 @@ describe('module loader', function() {
"or forgot to load it. If registering a module ensure that you specify the dependencies as the second " +
"argument.");
});
+
+ it('should complain if a module is called "hasOwnProperty', function() {
+ expect(function() {
+ window.angular.module('hasOwnProperty', []);
+ }).toThrowMinErr('ng','badname', "hasOwnProperty is not a valid module name");
+ });
});