X-Git-Url: http://git.rot13.org/?p=virtual-ldap;a=blobdiff_plain;f=t%2Fkoha%2F02-create-test-user.t;h=e2cb50c97e81a4b4e7bd76a5a192d76200c824ed;hp=3eaa708b90f238dd9ed444b3ccdbbfc8b9af48f9;hb=5554ff3c9bd737a7238e342da520643c05805874;hpb=5b0b2bd4647411e7d388c09e215927f5dc035423 diff --git a/t/koha/02-create-test-user.t b/t/koha/02-create-test-user.t index 3eaa708..e2cb50c 100755 --- a/t/koha/02-create-test-user.t +++ b/t/koha/02-create-test-user.t @@ -15,7 +15,11 @@ use WWW::Mechanize; my $mech = Test::WWW::Mechanize->new; my $save_count = 1; -sub save { write_file "/tmp/login-$save_count.html", @_; $save_count++; } +sub save { + my $path = '/tmp/login-' . $save_count++ . '.html'; + write_file $path, @_; + warn "# save $path ", -s $path, " bytes\n"; +} $mech->get_ok( 'https://localhost', 'opac' );