File: 38-allow_globals.t

package info (click to toggle)
libtext-micromason-perl 2.13-3
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 624 kB
  • ctags: 180
  • sloc: perl: 3,222; makefile: 23
file content (35 lines) | stat: -rw-r--r-- 962 bytes parent folder | download | duplicates (8)
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
#!/usr/bin/perl -w

use strict;
use Test::More tests => 13;

use_ok 'Text::MicroMason';

######################################################################

{
    ok my $m = Text::MicroMason->new( -AllowGlobals );
    ok $m->allow_globals( '$name' );
    is $m->execute( text=>'Hello <% $name || "" %>!' ), 'Hello !';
}

######################################################################

{
    ok my $m = Text::MicroMason->new( -AllowGlobals );
    ok $m->allow_globals( '$name' );
    ok $m->set_globals( '$name' => 'Bob' );
    is $m->execute( text=>'Hello <% $name %>!' ), 'Hello Bob!';
}

######################################################################

{
    ok my $m = Text::MicroMason->new( -AllowGlobals );
    ok $m->allow_globals( '$count' );
    ok my $sub = $m->compile( text=>'Item <% ++ $count %>.' );
    is $sub->(), 'Item 1.';
    is $sub->(), 'Item 2.';
}

######################################################################