about summary refs log tree commit homepage
path: root/t/v2writable.t
diff options
context:
space:
mode:
authorEric Wong <e@yhbt.net>2020-05-07 21:05:55 +0000
committerEric Wong <e@yhbt.net>2020-05-09 08:59:10 +0000
commit0283273a14e1871955f6a9132f4f3f7884ec8a3f (patch)
tree57c0182a8c07d3dfc041b7a818fc6293c7b433f7 /t/v2writable.t
parentfd966061df6a61104935984bed7c28a461a124ff (diff)
downloadpublic-inbox-0283273a14e1871955f6a9132f4f3f7884ec8a3f.tar.gz
We no longer load or use Email::MIME outside of comparison
tests.
Diffstat (limited to 't/v2writable.t')
-rw-r--r--t/v2writable.t8
1 files changed, 4 insertions, 4 deletions
diff --git a/t/v2writable.t b/t/v2writable.t
index 07687052..e5a565ce 100644
--- a/t/v2writable.t
+++ b/t/v2writable.t
@@ -3,7 +3,7 @@
 use strict;
 use warnings;
 use Test::More;
-use PublicInbox::MIME;
+use PublicInbox::Eml;
 use PublicInbox::ContentId qw(content_digest content_id);
 use PublicInbox::TestCommon;
 use Cwd qw(abs_path);
@@ -20,7 +20,7 @@ my $ibx = {
         -primary_address => 'test@example.com',
 };
 $ibx = PublicInbox::Inbox->new($ibx);
-my $mime = PublicInbox::MIME->new(<<'EOF');
+my $mime = PublicInbox::Eml->new(<<'EOF');
 From: a@example.com
 To: test@example.com
 Subject: this is a subject
@@ -63,7 +63,7 @@ if ('ensure git configs are correct') {
         @warn = ();
         $mime->header_set('Message-Id', '<a-mid@b>', '<c@d>');
         is($im->add($mime), undef, 'secondary MID ignored if first matches');
-        my $sec = PublicInbox::MIME->new($mime->as_string);
+        my $sec = PublicInbox::Eml->new($mime->as_string);
         $sec->header_set('Date');
         $sec->header_set('Message-Id', '<a-mid@b>', '<c@d>');
         ok($im->add($sec), 'secondary MID used if data is different');
@@ -90,7 +90,7 @@ if ('ensure git configs are correct') {
         my $hdr = $mime->header_obj;
         my $gen = PublicInbox::Import::digest2mid(content_digest($mime), $hdr);
         unlike($gen, qr![\+/=]!, 'no URL-unfriendly chars in Message-Id');
-        my $fake = PublicInbox::MIME->new($mime->as_string);
+        my $fake = PublicInbox::Eml->new($mime->as_string);
         $fake->header_set('Message-Id', "<$gen>");
         ok($im->add($fake), 'fake added easily');
         is_deeply(\@warn, [], 'no warnings from a faker');