File: 14-kpat.t

package info (click to toggle)
libstring-interpolate-named-perl 1.06-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 148 kB
  • sloc: perl: 430; makefile: 2
file content (45 lines) | stat: -rw-r--r-- 696 bytes parent folder | download | duplicates (2)
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;

use_ok('String::Interpolate::Named');
$tests++;

my $s = { keypattern => qr/a+/,
	  args => { a       => "one",
		    aa      => "",
		    aaa     => "three",
		    b       => "Eins",
		    bb      => "Zwo",
		    ab      => "yes",
		  },
	};

while ( <DATA> ) {
    next if /^#/;
    next unless /\S/;
    chomp;

    my ( $tpl, $exp ) = split( /\t+/, $_ );
    my $res = interpolate( $s, $tpl );
    is( $res, $exp, "$tpl -> $exp" );

    $tests++;
}

done_testing($tests);

__DATA__
# Valid
ab%{a}def		abonedef
ab%{aa}def		abdef
%{aaa}def		threedef

# Not valid
ab%{b}def		ab%{b}def
ab%{bb}def		ab%{bb}def
%{ab}def		%{ab}def