Lines Matching refs:text
23 my $text = $template1->fill_in();
24 is $text, $result;
28 $text = $template1->fill_in(DELIMITERS => [ '<<', '>>' ]);
29 is $text, $result;
40 $text = $template1->fill_in();
41 is $text, $result;
45 $text = $template1->fill_in(DELIMITERS => [ '[', ']' ]);
46 is $text, $result;
78 my $text = $tmpl->fill_in;
80 my $ok = (!defined $text && !defined $result || $text eq $result);
82 ok($ok) or diag "expected .$result., got .$text.";