]> Sergey Matveev's repositories - public-inbox.git/blobdiff - t/indexlevels-mirror.t
public-inbox 1.5.0
[public-inbox.git] / t / indexlevels-mirror.t
index 90506e2846fc1aa428403c77d1439686d649672b..704f7e1174e3198e6c0bb6e6b1fc5cc5c3a48fd6 100644 (file)
@@ -3,24 +3,23 @@
 use strict;
 use warnings;
 use Test::More;
-use PublicInbox::MIME;
+use PublicInbox::Eml;
 use PublicInbox::Inbox;
 use PublicInbox::InboxWritable;
 require PublicInbox::Admin;
 use PublicInbox::TestCommon;
 my $PI_TEST_VERSION = $ENV{PI_TEST_VERSION} || 2;
 require_git('2.6') if $PI_TEST_VERSION == 2;
-require_mods(qw(DBD::SQLite Email::MIME));
-
-my $mime = Email::MIME->create(
-       header => [
-               From => 'a@example.com',
-               To => 'test@example.com',
-               Subject => 'this is a subject',
-               Date => 'Fri, 02 Oct 1993 00:00:00 +0000',
-       ],
-       body => "hello world\n",
-);
+require_mods(qw(DBD::SQLite));
+
+my $mime = PublicInbox::Eml->new(<<'EOF');
+From: a@example.com
+To: test@example.com
+Subject: this is a subject
+Date: Fri, 02 Oct 1993 00:00:00 +0000
+
+hello world
+EOF
 
 sub import_index_incremental {
        my ($v, $level, $mime) = @_;