Skip to content

Commit 500058e

Browse files
committed
template updated
1 parent 872e1c1 commit 500058e

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

TestCaseTemplate.vm

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
#*
12
// QUnit test cases generated @ ${date}
23

34
module("${moduleName}", {
@@ -10,13 +11,15 @@ module("${moduleName}", {
1011
//${testTearDownCode}
1112
}
1213
});
13-
14+
*#
1415

1516
#foreach( $function in $testFunctions )
1617

1718
test("${function.functionName}", function() {
1819
expect(0);
20+
#if( ${function.fixture}!='' )
1921
$("#qunit-fixture").append('${function.fixture}');
22+
#end
2023
#foreach( $statement in $function.statements )
2124
$statement
2225
#end

0 commit comments

Comments
 (0)