1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2025-12-22 13:48:00 +01:00

change directory structure to follow the more standard package hierarchy

This commit is contained in:
Doug Kearns
2007-10-01 10:23:39 +00:00
parent 6b6b6c2c8b
commit 2d60a48fd1
23 changed files with 330 additions and 163 deletions

13
content/test.js Executable file
View File

@@ -0,0 +1,13 @@
var TestCase = mozlab.mozunit.TestCase;
var assert = mozlab.mozunit.assertions;
var tc = new TestCase('testcase description here');
tc.tests = {
'First test is successful': function() {
var vimperator = new Vimperator();
assert.isDefined(vimperator);
assert.isTrue(true);
}
}
tc.run()