X-Git-Url: http://www.git.stargrave.org/?a=blobdiff_plain;f=t%2Fnulsubject.t;h=7f5dd37805edeca6909be69a243917c9daa1c8bc;hb=refs%2Fheads%2Fmaster;hp=45f95a9e5f97485a691278c8d2ae5444f2deee44;hpb=3c313f9034aac96182e2efdc2f92c40803626f32;p=public-inbox.git diff --git a/t/nulsubject.t b/t/nulsubject.t index 45f95a9e..7f5dd378 100644 --- a/t/nulsubject.t +++ b/t/nulsubject.t @@ -1,4 +1,4 @@ -# Copyright (C) 2016-2019 all contributors +# Copyright (C) 2016-2021 all contributors # License: AGPL-3.0+ use strict; use warnings; @@ -11,21 +11,20 @@ my ($tmpdir, $for_destroy) = tmpdir(); my $git_dir = "$tmpdir/a.git"; { - is(system(qw(git init -q --bare), $git_dir), 0, 'git init ok'); my $git = PublicInbox::Git->new($git_dir); my $im = PublicInbox::Import->new($git, 'testbox', 'test@example'); - $im->add(Email::MIME->create( - header => [ - From => 'a@example.com', - To => 'b@example.com', - 'Content-Type' => 'text/plain', - Subject => ' A subject line with a null =?iso-8859-1?q?=00?= see!', - 'Message-ID' => '', - ], - body => "hello world\n", - )); + $im->init_bare; + $im->add(PublicInbox::Eml->new(<<'EOF')); +From: a@example.com +To: b@example.com +Subject: A subject line with a null =?iso-8859-1?q?=00?= see! +Message-ID: + +hello world +EOF $im->done; - is(system(qw(git --git-dir), $git_dir, 'fsck', '--strict'), 0, 'git fsck ok'); + is(xsys(qw(git --git-dir), $git_dir, 'fsck', '--strict'), 0, + 'git fsck ok'); } done_testing();