1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2026-01-08 14:04:11 +01:00

remove mozunit.js

This commit is contained in:
Doug Kearns
2007-11-09 05:31:28 +00:00
parent 9fa91be129
commit 857af21fa6

View File

@@ -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"));
}
}