aboutsummaryrefslogtreecommitdiffstats
path: root/test/formsTest.js
diff options
context:
space:
mode:
authorMisko Hevery2010-01-23 15:54:58 -0800
committerMisko Hevery2010-01-23 15:54:58 -0800
commit4460328bc1173f5d97fb4ff54edc041968486fce (patch)
tree40e18a175f7f1ae104aa56347fe5038526374ed8 /test/formsTest.js
parente41ee88ef85986dcd0fea23fefcc57d89cee5c0b (diff)
downloadangular.js-4460328bc1173f5d97fb4ff54edc041968486fce.tar.bz2
lots of cleanup to get it ready for OS
Diffstat (limited to 'test/formsTest.js')
-rw-r--r--test/formsTest.js18
1 files changed, 0 insertions, 18 deletions
diff --git a/test/formsTest.js b/test/formsTest.js
deleted file mode 100644
index ccade915..00000000
--- a/test/formsTest.js
+++ /dev/null
@@ -1,18 +0,0 @@
-nglrTest = TestCase('nglrTest');
-
-nglrTest.prototype.testShiftBind = function(){
- expectAsserts(3);
- shiftBind('this', function(target, arg) {
- assertEquals(this, 'this');
- assertEquals(target, 'target');
- assertEquals(arg, 'arg');
- }).apply('target', ['arg']);
-};
-
-nglrTest.prototype.testBind = function(){
- expectAsserts(2);
- bind('this', function(arg) {
- assertEquals(this, 'this');
- assertEquals(arg, 'arg');
- }).apply('XXX', ['arg']);
-};