File: 1_load.t

package info (click to toggle)
libpoe-component-server-soap-perl 1.14-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 172 kB
  • sloc: perl: 624; makefile: 2
file content (19 lines) | stat: -r--r--r-- 300 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#!/usr/bin/perl
use strict; use warnings;

my $numtests;
BEGIN {
	$numtests = 2;

	eval "use Test::NoWarnings";
	if ( ! $@ ) {
		# increment by one
		$numtests++;

	}
}

use Test::More tests => $numtests;

use_ok( 'POE::Component::Server::SOAP::Response' );
use_ok( 'POE::Component::Server::SOAP' );