]> Sergey Matveev's repositories - public-inbox.git/blobdiff - t/indexlevels-mirror.t
t/*.t: reduce dependency on Email::MIME APIs
[public-inbox.git] / t / indexlevels-mirror.t
index 90506e2846fc1aa428403c77d1439686d649672b..dcd5dc39128ec8f0f3884e1f458cd117062e13d2 100644 (file)
@@ -10,17 +10,16 @@ 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::MIME->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) = @_;