summaryrefslogtreecommitdiff
path: root/rt/t/api/attachment.t
diff options
context:
space:
mode:
Diffstat (limited to 'rt/t/api/attachment.t')
-rw-r--r--rt/t/api/attachment.t45
1 files changed, 0 insertions, 45 deletions
diff --git a/rt/t/api/attachment.t b/rt/t/api/attachment.t
deleted file mode 100644
index 07c46bad0..000000000
--- a/rt/t/api/attachment.t
+++ /dev/null
@@ -1,45 +0,0 @@
-
-use strict;
-use warnings;
-use RT;
-use RT::Test tests => 4;
-
-
-{
-
-ok (require RT::Attachment);
-
-
-}
-
-{
-
-my $test1 = "From: jesse";
-my @headers = RT::Attachment->_SplitHeaders($test1);
-is ($#headers, 0, $test1 );
-
-my $test2 = qq{From: jesse
-To: bobby
-Subject: foo
-};
-
-@headers = RT::Attachment->_SplitHeaders($test2);
-is ($#headers, 2, "testing a bunch of singline multiple headers" );
-
-
-my $test3 = qq{From: jesse
-To: bobby,
- Suzie,
- Sally,
- Joey: bizzy,
-Subject: foo
-};
-
-@headers = RT::Attachment->_SplitHeaders($test3);
-is ($#headers, 2, "testing a bunch of singline multiple headers" );
-
-
-
-}
-
-1;