From ae1db005d2d89eab20260253b246d280a9626daa Mon Sep 17 00:00:00 2001 From: Sveta Smirnova Date: Mon, 6 Oct 2025 17:55:05 +0300 Subject: [PATCH] Debug info in Micro.t --- t/lib/HTTP/Micro.t | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/t/lib/HTTP/Micro.t b/t/lib/HTTP/Micro.t index 02ca7d83..7a615fc0 100644 --- a/t/lib/HTTP/Micro.t +++ b/t/lib/HTTP/Micro.t @@ -33,6 +33,11 @@ for my $test_url ( "http://www.percona.com/robots.txt", "https://v.percona.com" qr/^\Q$tiny_content/, "HTTP::Micro == HTTP::Tiny for $test_url" ); + + diag('Micro:'); + diag($micro_content); + diag('Tiny:'); + diag($tiny_content); } done_testing;