summaryrefslogtreecommitdiffstats
path: root/external/perl/Text-Template-1.56/t/nested-tags.t
diff options
context:
space:
mode:
Diffstat (limited to 'external/perl/Text-Template-1.56/t/nested-tags.t')
-rwxr-xr-xexternal/perl/Text-Template-1.56/t/nested-tags.t26
1 files changed, 26 insertions, 0 deletions
diff --git a/external/perl/Text-Template-1.56/t/nested-tags.t b/external/perl/Text-Template-1.56/t/nested-tags.t
new file mode 100755
index 0000000000..79bf6a1ae2
--- /dev/null
+++ b/external/perl/Text-Template-1.56/t/nested-tags.t
@@ -0,0 +1,26 @@
+#!perl
+#
+# Test for breakage of Dist::Milla in v1.46
+#
+
+use strict;
+use warnings;
+use Text::Template;
+
+BEGIN {
+ # Minimum Test::More version; 0.94+ is required for `done_testing`
+ unless (eval { require Test::More; "$Test::More::VERSION" >= 0.94; }) {
+ Test::More::plan(skip_all => '[ Test::More v0.94+ ] is required for testing');
+ }
+
+ Test::More->import;
+}
+
+my $tmpl = Text::Template->new(
+ TYPE => 'STRING',
+ SOURCE => q| {{ '{{$NEXT}}' }} |,
+ DELIMITERS => [ '{{', '}}' ]);
+
+is $tmpl->fill_in, ' {{$NEXT}} ';
+
+done_testing;