File: 10-basic.t

package info (click to toggle)
libtemplate-provider-fromdata-perl 0.10-1
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 164 kB
  • ctags: 105
  • sloc: perl: 1,171; makefile: 2
file content (52 lines) | stat: -rw-r--r-- 873 bytes parent folder | download | duplicates (5)
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
46
47
48
49
50
51
52
use Test::More tests => 8;

use strict;
use warnings;

use_ok( 'Template' );
use_ok( 'Template::Provider::FromDATA' );

my $provider = Template::Provider::FromDATA->new;
isa_ok( $provider, 'Template::Provider::FromDATA' );

my $template = Template->new( {
    LOAD_TEMPLATES => [ $provider ]
} );
isa_ok( $template, 'Template' );

{
    my $output;
    $template->process( 'foo', {}, \$output );
    is( $output, "bar\n\n" );
}

{
    my $output;
    $template->process( 'baz', { qux => 'bar' }, \$output );
    is( $output, "bar\n\n" );
}

$template = Template->new( {
    LOAD_TEMPLATES => [ $provider ],
    WRAPPER        => 'wrapper'
} );
isa_ok( $template, 'Template' );

{
    my $output;
    $template->process( 'foo', {}, \$output );
    is( $output, "before\nbar\n\nafter\n" );
}

__DATA__

__foo__
bar

__baz__
[% qux %]

__wrapper__
before
[% content -%]
after