File: 04_multiple.t

package info (click to toggle)
libcgi-application-plugin-logdispatch-perl 1.02-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, sid, trixie
  • size: 180 kB
  • sloc: perl: 454; makefile: 2
file content (19 lines) | stat: -rw-r--r-- 519 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
use Test::More tests => 4;

use lib './t';
use strict;

$ENV{CGI_APP_RETURN_ONLY} = 1;

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

my $logoutput = ${$t1_obj->{__LOG_MESSAGES}->{HANDLE}};
my $logoutput2 = ${$t1_obj->{__LOG_MESSAGES}->{HANDLE2}};

like($logoutput, qr/log debug/, 'logged debug message');
like($logoutput, qr/log info/, 'logged info message');

unlike($logoutput2, qr/log debug/, 'no debug message');
like($logoutput2, qr/log info/, 'logged info message');