|
require 't/test-lib.pm' ;
my $res ;
my $client = register(
'client1' ,
sub {
LLNG::Manager::Test->new( {
ini => {
}
}
);
}
);
my $client2 = register(
'client2' ,
sub {
LLNG::Manager::Test->new( {
ini => {
}
}
);
}
);
withHandler(
"client1" ,
sub {
is( Lemonldap::NG::Handler::Main->tsv->{portal}->(),
}
);
withHandler(
"client2" ,
sub {
is( Lemonldap::NG::Handler::Main->tsv->{portal}->(),
}
);
withHandler(
"client1" ,
sub {
is( Lemonldap::NG::Handler::Main->tsv->{portal}->(),
}
);
withHandler(
"client2" ,
sub {
is( Lemonldap::NG::Handler::Main->tsv->{portal}->(),
}
);
count(4);
done_testing( count() );
|