1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45
|
#! perl
use warnings;
use strict;
use Test::More;
my $tests = 0;
-d "t" && chdir("t");
use_ok('String::Interpolate::Named');
$tests++;
# Using OO with explicit ctl setting.
my $s = String::Interpolate::Named->new;
$s->ctl( { separator => ":",
args => { title => "Hi There!",
subtitle => ["%{capo|CAPO %{}}"],
multi => [ "Alpha", "Beta" ],
capo => 1,
key => [ "G" ],
h => "Z",
head => [ "yes" ],
},
} );
@ARGV = qw( 10-basic.dat 20-multi.dat );
foreach ( @ARGV ) {
-s -r $_ ? pass("check $_") : BAIL_OUT("$_ [$!]");
$tests++;
}
while ( <> ) {
next if /^#/;
next unless /\S/;
chomp;
my ( $tpl, $exp ) = split( /\t+/, $_ );
my $res = $s->interpolate($tpl);
is( $res, $exp, "$tpl -> $exp" );
$tests++;
}
done_testing($tests);
|