File: 02_newline.t

package info (click to toggle)
libcgi-application-basic-plugin-bundle-perl 0.5-1
  • links: PTS
  • area: main
  • in suites: squeeze
  • size: 1,348 kB
  • ctags: 285
  • sloc: perl: 4,924; sh: 31; makefile: 9
file content (24 lines) | stat: -rw-r--r-- 750 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
use Test::More tests => 7;

use lib './t';
use strict;

$ENV{CGI_APP_RETURN_ONLY} = 1;

use TestAppNewline;
my $t1_obj = TestAppNewline->new();
my $t1_output = $t1_obj->run();

my $logoutput = ${$t1_obj->{__LOG_MESSAGES}->{HANDLE}};
my $logoutput_append = ${$t1_obj->{__LOG_MESSAGES}->{HANDLE_APPEND}};

like($logoutput, qr/log debug1/, 'logged debug message');
like($logoutput, qr/log info1/, 'logged info message');
like($logoutput, qr#log debug2$/#, 'newline manually added');
unlike($logoutput, qr#log debug1$/#, 'no automatic newline added');

unlike($logoutput_append, qr/log debug1/, 'no debug message');
like($logoutput_append, qr/log info1/, 'logged info message');
like($logoutput_append, qr#log info1$/#, 'newline automatically added');