Email-Outlook-Message

 view release on metacpan or  search on metacpan

t/gpg_signed.t  view on Meta::CPAN

use strict;
use warnings;
use Test::More tests => 2;
use Email::Outlook::Message;

my $p = new Email::Outlook::Message('t/files/gpg_signed.msg');
ok($p, "Parsing succeeded");
TODO: {
  local $TODO = "GPG Parsing doesn't work yet";
  my $m = $p->to_email_mime;
  like($m->content_type, qr{^multipart/signed},
    "Content type should be multipart/signed");
}



( run in 0.956 second using v1.01-cache-2.11-cpan-df04353d9ac )