X-Git-Url: http://www.git.stargrave.org/?a=blobdiff_plain;f=t%2Fimport.t;h=d2264102dc4fdbd0e544bdf762afdfb234570d61;hb=e6b7a7f5f70fb89a54ff158bc6c8b564149947e5;hp=79af9846dce1eaed486b124fd03211615841073d;hpb=4bebfa0c80ad7f4596a7dca98b39121470a42af0;p=public-inbox.git diff --git a/t/import.t b/t/import.t index 79af9846..d2264102 100644 --- a/t/import.t +++ b/t/import.t @@ -15,17 +15,16 @@ my ($dir, $for_destroy) = tmpdir(); my $git = PublicInbox::Git->new($dir); my $im = PublicInbox::Import->new($git, 'testbox', 'test@example'); $im->init_bare; -my $mime = PublicInbox::MIME->create( - header => [ - From => 'a@example.com', - To => 'b@example.com', - 'Content-Type' => 'text/plain', - Subject => 'this is a subject', - 'Message-ID' => '', - Date => 'Fri, 02 Oct 1993 00:00:00 +0000', - ], - body => "hello world\n", -); +my $mime = PublicInbox::MIME->new(<<'EOF'); +From: a@example.com +To: b@example.com +Subject: this is a subject +Message-ID: +Date: Fri, 02 Oct 1993 00:00:00 +0000 + +hello world +EOF + my $v2 = require_git(2.6, 1); my $smsg = {} if $v2; like($im->add($mime, undef, $smsg), qr/\A:[0-9]+\z/, 'added one message');