aboutsummaryrefslogtreecommitdiffstats
path: root/test/UrlWatcherTest.js
diff options
context:
space:
mode:
authorMisko Hevery2010-04-03 17:04:36 -0700
committerMisko Hevery2010-04-03 17:04:36 -0700
commita80a61839a66d244c8bb14bbe2975746e02516c8 (patch)
tree5a7b4d9d3e2a7a15ebf55e068782fbf2aa4ac6bf /test/UrlWatcherTest.js
parent35ca4fcb9c49e505e28669e951e01ddedb01d7db (diff)
downloadangular.js-a80a61839a66d244c8bb14bbe2975746e02516c8.tar.bz2
injection is now working
Diffstat (limited to 'test/UrlWatcherTest.js')
-rw-r--r--test/UrlWatcherTest.js25
1 files changed, 0 insertions, 25 deletions
diff --git a/test/UrlWatcherTest.js b/test/UrlWatcherTest.js
deleted file mode 100644
index 6080ca62..00000000
--- a/test/UrlWatcherTest.js
+++ /dev/null
@@ -1,25 +0,0 @@
-UrlWatcherTest = TestCase('UrlWatcherTest');
-
-UrlWatcherTest.prototype.testUrlWatcher = function () {
- expectAsserts(2);
- var location = {href:"http://server", hash:""};
- var watcher = new UrlWatcher(location);
- watcher.delay = 1;
- watcher.watch(function(url){
- assertEquals('http://getangular.test', url);
- });
- watcher.setTimeout = function(fn, delay){
- assertEquals(1, delay);
- location.href = "http://getangular.test";
- watcher.setTimeout = function(fn, delay) {
- };
- fn();
- };
- watcher.start();
-};
-
-FunctionTest = TestCase("FunctionTest");
-
-FunctionTest.prototype.testEscapeHtml = function () {
- assertEquals("&lt;div&gt;&amp;amp;&lt;/div&gt;", escapeHtml('<div>&amp;</div>'));
-};