Update changelog + remove bad test for cpan tester

This commit is contained in:
Xavier Guimard 2009-09-15 14:12:03 +00:00
parent 176270ead5
commit 38d5fabc90
2 changed files with 3 additions and 8 deletions

View File

@ -2,8 +2,9 @@ lemonldap-ng (0.9.5) unstable; urgency=low
* Bugs :
- bad XML filter when embedding <application> in <application> tags
- testUri() not usable in Lemonldap::NG::Handler::CGI
-- Xavier Guimard <x.guimard@free.fr> Wed, 12 Aug 2009 11:07:18 +0200
-- Xavier Guimard <x.guimard@free.fr> Thu, 20 Aug 2009 16:20:26 +0200
lemonldap-ng (0.9.4) unstable; urgency=low

View File

@ -5,7 +5,7 @@
# change 'tests => 1' to 'tests => last_test_to_print';
use Test::More tests => 4;
use Test::More tests => 3;
BEGIN { use_ok('Lemonldap::NG::Portal::Menu') }
#########################
@ -15,12 +15,6 @@ BEGIN { use_ok('Lemonldap::NG::Portal::Menu') }
my $tmp;
my $perl = "perl -I" . join( ' -I', @INC );
$tmp =
`$perl -MLemonldap::NG::Portal::Menu -e '\$a=Lemonldap::NG::Portal::Menu->new()' 2>/dev/null`;
ok( $tmp =~ /Portal object required/, 'Portal object required' );
my ( $m, $p );
$p = bless { cookieName => 'lemonldap', }, 'Lemonldap::NG::Portal::SharedConf';