summaryrefslogtreecommitdiffstats
path: root/t/mustache-spec.t
diff options
context:
space:
mode:
Diffstat (limited to 't/mustache-spec.t')
-rw-r--r--t/mustache-spec.t5
1 files changed, 4 insertions, 1 deletions
diff --git a/t/mustache-spec.t b/t/mustache-spec.t
index e97848d..9829b04 100644
--- a/t/mustache-spec.t
+++ b/t/mustache-spec.t
@@ -11,10 +11,13 @@ for my $file (dir('t', 'mustache-spec', 'specs')->children) {
next unless $file =~ /\.json$/;
next if $file->basename =~ /^~/; # for now
next if $file->basename =~ /partials/;
- local $TODO = "unimplemented" if $file->basename =~ /delimiters/;
my $tests = decode_json($file->slurp);
diag("running " . $file->basename . " tests");
for my $test (@{ $tests->{tests} }) {
+ local $TODO = "unimplemented"
+ if $file->basename eq 'delimiters.json'
+ && $test->{name} =~ /partial/i;
+
render_ok(
$test->{template},
$test->{data},