summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--t/mustache-spec.t2
1 files changed, 2 insertions, 0 deletions
diff --git a/t/mustache-spec.t b/t/mustache-spec.t
index eb30391..e97848d 100644
--- a/t/mustache-spec.t
+++ b/t/mustache-spec.t
@@ -10,6 +10,8 @@ use Test::Requires 'JSON', 'Path::Class';
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} }) {