From: Dobrica Pavlinusic Date: Thu, 14 Jul 2011 20:18:57 +0000 (+0000) Subject: use bind_as from config file X-Git-Url: http://git.rot13.org/?p=virtual-ldap;a=commitdiff_plain;h=ce613f20e515d739b8357e3419429758f250b1cb;hp=1559034e6872ea98846c0128d1e9b462c5a6a6bd;ds=sidebyside use bind_as from config file --- diff --git a/t/koha/01-remove-test-user.t b/t/koha/01-remove-test-user.t index 65d5418..b3a8806 100755 --- a/t/koha/01-remove-test-user.t +++ b/t/koha/01-remove-test-user.t @@ -3,7 +3,7 @@ use warnings; use strict; -use Test::More tests => 6; +use Test::More tests => 7; use Test::WWW::Mechanize; use XML::Simple; use Data::Dump qw(dump); @@ -14,13 +14,15 @@ my $koha_conf = $ENV{KOHA_CONF} || '/etc/koha/sites/ffzg/koha-conf.xml'; my $xml = XMLin( $koha_conf ); diag 'Koha config = ',dump $xml->{config}; +ok( $xml->{config}->{useldapserver}, 'useldapserver' ); + our $config; require 't/config.pl'; diag 'test config = ',dump $config; my $mech = Test::WWW::Mechanize->new; -$mech->get_ok( $url, 'intranet' ); +$mech->get_ok( $url, "intranet $url" ); $mech->submit_form_ok({ fields => { @@ -32,7 +34,7 @@ $mech->submit_form_ok({ $mech->submit_form_ok({ form_number => 2, fields => { - member => 'kohatest@ffzg.hr', + member => $config->{bind_as}, }, }, 'find patron' );