File: Base.t

package info (click to toggle)
libsoap-wsdl-perl 3.004-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 2,600 kB
  • sloc: perl: 8,433; xml: 1,769; java: 19; makefile: 15
file content (19 lines) | stat: -rw-r--r-- 458 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
use strict; use warnings;
use Test::More tests => 8;

use_ok qw(SOAP::WSDL::Base);

my $obj = SOAP::WSDL::Base->new();

ok $obj->push_annotation('foo');
ok $obj->push_annotation('foo');
ok $obj->push_annotation('foo');

ok $obj->set_namespace('foo');
ok $obj->push_namespace('foo');

eval { $obj->find_namespace('uri:example','foo') };
like $@, qr{get_targetNamespace};

eval { $obj->find_namespace(['uri:example','foo']) };
like $@, qr{get_targetNamespace};