about summary refs log tree commit homepage
path: root/lib
diff options
context:
space:
mode:
authorEric Wong <e@80x24.org>2024-01-16 11:52:51 +0000
committerEric Wong <e@80x24.org>2024-01-17 09:37:53 +0000
commit9b381304c383df305ee0d1f082d4747ef336e936 (patch)
treed212477acd6c69515a35fc13ebc1371b7c7444e4 /lib
parent25aa06e05957cba74798884f53aa317a0ccd04b8 (diff)
downloadpublic-inbox-9b381304c383df305ee0d1f082d4747ef336e936.tar.gz
We moved to PublicInbox::Eml a while back and have no plans
to go back to using Email::MIME, so don't tempt users and
packagers to waste disk space on Email::MIME.
Diffstat (limited to 'lib')
-rw-r--r--lib/PublicInbox/TestCommon.pm1
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/PublicInbox/TestCommon.pm b/lib/PublicInbox/TestCommon.pm
index 25caaaa9..5f159683 100644
--- a/lib/PublicInbox/TestCommon.pm
+++ b/lib/PublicInbox/TestCommon.pm
@@ -266,6 +266,7 @@ sub require_mods {
         }
         return unless @need;
         my $m = join(', ', @need)." missing for $0";
+        $m =~ s/\bEmail::MIME\b/Email::MIME (development purposes only)/;
         skip($m, $maybe) if $maybe;
         plan(skip_all => $m)
 }