File: 39-debug.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 (28 lines) | stat: -rw-r--r-- 568 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
#!/usr/bin/perl -w

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

use_ok 'Text::MicroMason';

ok my $m = Text::MicroMason->new( -Debug, debug => { default => 0 } );

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

{
    my $scr_hello = <<'ENDSCRIPT';
% my $noun = 'World';
Hello <% $noun %>!
How are ya?
ENDSCRIPT

  my $res_hello = <<'ENDSCRIPT';
Hello World!
How are ya?
ENDSCRIPT

    ok my $scriptlet = $m->compile( text => $scr_hello);
    is $scriptlet->(), $res_hello;
}

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