aboutsummaryrefslogtreecommitdiffstats
path: root/test/formsTest.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/formsTest.js')
-rw-r--r--test/formsTest.js22
1 files changed, 0 insertions, 22 deletions
diff --git a/test/formsTest.js b/test/formsTest.js
deleted file mode 100644
index e834e938..00000000
--- a/test/formsTest.js
+++ /dev/null
@@ -1,22 +0,0 @@
-nglrTest = TestCase('nglrTest');
-
-nglrTest.prototype.testShiftBind = function(){
- expectAsserts(3);
- nglr.shiftBind('this', function(target, arg) {
- assertEquals(this, 'this');
- assertEquals(target, 'target');
- assertEquals(arg, 'arg');
- }).apply('target', ['arg']);
-};
-
-nglrTest.prototype.testBind = function(){
- expectAsserts(2);
- nglr.bind('this', function(arg) {
- assertEquals(this, 'this');
- assertEquals(arg, 'arg');
- }).apply('XXX', ['arg']);
-};
-
-
-
-