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:
13
content/test.js
Executable file
13
content/test.js
Executable 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()
|
||||
Reference in New Issue
Block a user