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

added preliminary unit tests, not working yet, because the vimperator object cannot be found in this context.

This commit is contained in:
Martin Stubenschrott
2007-06-08 17:21:07 +00:00
parent 1bb7def7a0
commit b21eb9d1b6

19
mozunit.js Normal file
View File

@@ -0,0 +1,19 @@
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"));
}
}