Skip to content

Commit 968073a

Browse files
committed
QA: Make @test references consistent
1 parent c332e4b commit 968073a

10 files changed

Lines changed: 15 additions & 15 deletions

src/main/php/com/handlebarsjs/DefaultContext.class.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
* Default context for handlebars. Supports `@root` and `this` in addition
77
* to `./` and `../` notations from Mustache.
88
*
9-
* @test xp://com.handlebarsjs.unittest.ExecutionTest
9+
* @test com.handlebarsjs.unittest.ExecutionTest
1010
*/
1111
class DefaultContext extends DataContext {
1212

src/main/php/com/handlebarsjs/EachBlockHelper.class.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
/**
44
* Each: Traverse lists and hashes
55
*
6-
* @test xp://com.handlebarsjs.unittest.EachHelperTest
6+
* @test com.handlebarsjs.unittest.EachHelperTest
77
*/
88
class EachBlockHelper extends BlockNode {
99
private $params;

src/main/php/com/handlebarsjs/HandlebarsEngine.class.php

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,12 @@
1515
* a Mustache template, import it into Handlebars, and start taking
1616
* advantage of the extra Handlebars features.
1717
*
18-
* @test xp://com.handlebarsjs.unittest.EngineTest
19-
* @test xp://com.handlebarsjs.unittest.EachHelperTest
20-
* @test xp://com.handlebarsjs.unittest.IfHelperTest
21-
* @test xp://com.handlebarsjs.unittest.UnlessHelperTest
22-
* @test xp://com.handlebarsjs.unittest.WithHelperTest
23-
* @test xp://com.handlebarsjs.unittest.WebsiteExamplesTest
18+
* @test com.handlebarsjs.unittest.EngineTest
19+
* @test com.handlebarsjs.unittest.EachHelperTest
20+
* @test com.handlebarsjs.unittest.IfHelperTest
21+
* @test com.handlebarsjs.unittest.UnlessHelperTest
22+
* @test com.handlebarsjs.unittest.WithHelperTest
23+
* @test com.handlebarsjs.unittest.WebsiteExamplesTest
2424
* @see http://handlebarsjs.com/
2525
*/
2626
class HandlebarsEngine {

src/main/php/com/handlebarsjs/HashContext.class.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
/**
44
* Hash context for the `each` helper.
55
*
6-
* @test xp://com.handlebarsjs.unittest.EachHelperTest
6+
* @test com.handlebarsjs.unittest.EachHelperTest
77
*/
88
class HashContext extends DefaultContext {
99
private $map, $element, $index;

src/main/php/com/handlebarsjs/IfBlockHelper.class.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
/**
44
* If: Evaluate content in same context if value is truthy
55
*
6-
* @test xp://com.handlebarsjs.unittest.IfHelperTest
6+
* @test com.handlebarsjs.unittest.IfHelperTest
77
*/
88
class IfBlockHelper extends BlockNode {
99

src/main/php/com/handlebarsjs/ListContext.class.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
/**
44
* List context for the `each` helper.
55
*
6-
* @test xp://com.handlebarsjs.unittest.EachHelperTest
6+
* @test com.handlebarsjs.unittest.EachHelperTest
77
*/
88
class ListContext extends DefaultContext {
99
private $list, $last, $element, $index;

src/main/php/com/handlebarsjs/PartialBlockHelper.class.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
* Partial blocks
77
*
88
* @see http://handlebarsjs.com/partials.html
9-
* @test xp://com.handlebarsjs.unittest.PartialBlockHelperTest
9+
* @test com.handlebarsjs.unittest.PartialBlockHelperTest
1010
*/
1111
class PartialBlockHelper extends BlockNode {
1212

src/main/php/com/handlebarsjs/PartialNode.class.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
* Partials
99
*
1010
* @see http://handlebarsjs.com/partials.html
11-
* @test xp://com.handlebarsjs.unittest.PartialNodeTest
11+
* @test com.handlebarsjs.unittest.PartialNodeTest
1212
*/
1313
class PartialNode extends Node {
1414
protected $template, $options, $indent;

src/main/php/com/handlebarsjs/UnlessBlockHelper.class.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
/**
44
* Unless: Evaluate content in same context if value is falsy
55
*
6-
* @test xp://com.handlebarsjs.unittest.UnlessHelperTest
6+
* @test com.handlebarsjs.unittest.UnlessHelperTest
77
*/
88
class UnlessBlockHelper extends BlockNode {
99

src/main/php/com/handlebarsjs/WithBlockHelper.class.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
/**
44
* With: Evaluate content in context defined by argument
55
*
6-
* @test xp://com.handlebarsjs.unittest.WithHelperTest
6+
* @test com.handlebarsjs.unittest.WithHelperTest
77
*/
88
class WithBlockHelper extends BlockNode {
99
private $alias;

0 commit comments

Comments
 (0)