Compare commits
2 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
c6a48ba84b | ||
|
|
30be0da3dc |
1
Build.PL
1
Build.PL
@@ -4,6 +4,7 @@ use Module::Build;
|
||||
Module::Build->new(
|
||||
create_makefile_pl => 'passthrough',
|
||||
dist_name => 'SOAP-WSDL',
|
||||
dist_version => '1.26',
|
||||
dist_abstract => 'WSDL support for SOAP::Lite',
|
||||
module_name => 'SOAP::WSDL',
|
||||
license => 'artistic',
|
||||
|
||||
2
CHANGES
2
CHANGES
@@ -1,3 +1,5 @@
|
||||
* v1.26 2007/10/05 - bugfix
|
||||
- fixed issue reported by T Alex Beamish: tests fail when unwrapped into /tmp
|
||||
* v1.25 2007/09/24 - maintenance
|
||||
- added Makefile.PL to ease installation
|
||||
|
||||
|
||||
2
META.yml
2
META.yml
@@ -1,6 +1,6 @@
|
||||
---
|
||||
name: SOAP-WSDL
|
||||
version: 1.25
|
||||
version: 1.26
|
||||
author: []
|
||||
abstract: WSDL support for SOAP::Lite
|
||||
license: artistic
|
||||
|
||||
@@ -1568,6 +1568,6 @@ Replace whitespace by '@' in E-Mail addresses.
|
||||
|
||||
$LastChangedBy: kutterma $
|
||||
$HeadURL: http://soap-wsdl.svn.sourceforge.net/svnroot/soap-wsdl/SOAP-WSDL/branches/1.21/lib/SOAP/WSDL.pm $
|
||||
$Rev: 274 $
|
||||
$Rev: 278 $
|
||||
|
||||
=cut
|
||||
|
||||
@@ -21,7 +21,7 @@ my $data = { name => 'Mein Name',
|
||||
my $dir = cwd;
|
||||
|
||||
# chomp /t/ to allow running the script from t/ directory
|
||||
$dir=~s|/t/?||;
|
||||
$dir=~s|/t/?$||;
|
||||
|
||||
my $t0 = [gettimeofday];
|
||||
|
||||
|
||||
@@ -34,7 +34,7 @@ my $data = {
|
||||
|
||||
|
||||
my $dir= cwd;
|
||||
$dir=~s/\/t\/?//;
|
||||
$dir=~s/\/t\/?$//;
|
||||
|
||||
my $t0 = [gettimeofday];
|
||||
ok( my $soap=SOAP::WSDL->new(wsdl => 'file:///'.$dir.'/t/acceptance/test.wsdl.xml',
|
||||
|
||||
@@ -18,7 +18,7 @@ my $data = {name => 'Mein Name',
|
||||
my $dir = cwd;
|
||||
|
||||
# chomp /t/ to allow running the script from t/ directory
|
||||
$dir=~s|/t/?||;
|
||||
$dir=~s|/t/?$||;
|
||||
|
||||
my $t0 = [gettimeofday];
|
||||
ok( my $soap=SOAP::WSDL->new(wsdl => "file://$dir/t/acceptance/helloworld.asmx.xml",
|
||||
|
||||
@@ -32,7 +32,7 @@ my $data = {
|
||||
};
|
||||
|
||||
my $dir= cwd;
|
||||
$dir=~s/\/t\/?//;
|
||||
$dir=~s/\/t\/?$//;
|
||||
|
||||
# print $dir;
|
||||
my $url = $dir . '/t/acceptance/test.wsdl.xml';
|
||||
|
||||
Reference in New Issue
Block a user