From 857af21fa61f93b75fae5e69b69be32a4d6f3789 Mon Sep 17 00:00:00 2001 From: Doug Kearns Date: Fri, 9 Nov 2007 05:31:28 +0000 Subject: [PATCH] remove mozunit.js --- mozunit.js | 19 ------------------- 1 file changed, 19 deletions(-) delete mode 100644 mozunit.js diff --git a/mozunit.js b/mozunit.js deleted file mode 100644 index 8947f8f3..00000000 --- a/mozunit.js +++ /dev/null @@ -1,19 +0,0 @@ -var TestCase = mozlab.mozunit.TestCase; -var assert = mozlab.mozunit.assertions; - -var tc = new TestCase('vimperator testcase description here'); - -//var vimperator = new Vimperator(); - -tc.tests = { - 'First test is successful': function() { - assert.isTrue(true); - }, - - 'Checking a working echo()': function() { - assert.isTrue(vimperator.echo("test")); - }, - 'Checking the non working ex.echo()': function() { - assert.isTrue(vimperator.ex.echo("test")); - } -}