File: 10_qpnames.t

package info (click to toggle)
libmail-mboxparser-perl 0.55-2
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 304 kB
  • ctags: 74
  • sloc: perl: 1,010; makefile: 16
file content (18 lines) | stat: -rwxr-xr-x 389 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
use Test;
use File::Spec;
use strict;

use Mail::MboxParser;
my $src = File::Spec->catfile('t', 'qpname');

BEGIN { plan tests => 1 };

my $mb = Mail::MboxParser->new($src);
my ($msg) = $mb->get_messages;

my $att = $msg->get_attachments;
skip(&Mail::MboxParser::Mail::HAVE_MIMEWORDS ? 0 : "Mime::Words not installed",
     defined $msg->get_attachments("test  characters.txt"));