aboutsummaryrefslogtreecommitdiffstats
path: root/test/AngularTest.js
diff options
context:
space:
mode:
authorMisko Hevery2010-03-31 17:56:16 -0700
committerMisko Hevery2010-03-31 17:56:16 -0700
commit861bac1d2808b15abb867e761ded8144bf5f7e94 (patch)
treec7acd3aba0caeddf14a77c538487cf2baff9d96a /test/AngularTest.js
parent35a91085004e31f786df1e0011bc26ed0142ab4d (diff)
downloadangular.js-861bac1d2808b15abb867e761ded8144bf5f7e94.tar.bz2
started to add services
Diffstat (limited to 'test/AngularTest.js')
-rw-r--r--test/AngularTest.js44
1 files changed, 0 insertions, 44 deletions
diff --git a/test/AngularTest.js b/test/AngularTest.js
deleted file mode 100644
index 8db723e5..00000000
--- a/test/AngularTest.js
+++ /dev/null
@@ -1,44 +0,0 @@
-AngularTest = TestCase('AngularTest');
-
-UrlWatcherTest = TestCase('UrlWatcherTest');
-
-UrlWatcherTest.prototype.testUrlWatcher = function () {
- expectAsserts(2);
- var location = {href:"http://server", hash:""};
- var watcher = new UrlWatcher(location);
- watcher.delay = 1;
- watcher.listener = 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.watch();
-};
-
-UrlWatcherTest.prototype.testItShouldFireOnUpdateEventWhenSpecialURLSet = function(){
- expectAsserts(2);
- var location = {href:"http://server", hash:"#$iframe_notify=1234"};
- var watcher = new UrlWatcher(location);
- angular.callbacks._iframe_notify_1234 = function () {
- assertEquals("undefined", typeof angularCallbacks._iframe_notify_1234);
- assertEquals("http://server2#", location.href);
- };
- watcher.delay = 1;
- watcher.expectedUrl = "http://server2";
- watcher.setTimeout = function(fn, delay){
- watcher.setTimeout = function(fn, delay) {};
- fn();
- };
- watcher.watch();
-};
-
-FunctionTest = TestCase("FunctionTest");
-
-FunctionTest.prototype.testEscapeHtml = function () {
- assertEquals("&lt;div&gt;&amp;amp;&lt;/div&gt;", escapeHtml('<div>&amp;</div>'));
-};