]> git.donarmstrong.com Git - debbugs.git/blobdiff - t/06_mail_handling.t
output outlook in bugreport
[debbugs.git] / t / 06_mail_handling.t
index 8285792260cdbfee8cd45602f6f39ada2b9e8610..cc37feb35ede4248c3b70f52b59ea86f68dfa2ed 100644 (file)
@@ -1,7 +1,7 @@
 # -*- mode: cperl;-*-
 # $Id: 05_mail.t,v 1.1 2005/08/17 21:46:17 don Exp $
 
-use Test::More tests => 114;
+use Test::More tests => 123;
 
 use warnings;
 use strict;
@@ -22,6 +22,7 @@ use File::Basename qw(dirname basename);
 use lib qw(t/lib);
 use DebbugsTest qw(:all);
 use Data::Dumper;
+use Encode qw(decode encode);
 
 # HTTP::Server:::Simple defines a SIG{CHLD} handler that breaks system; undef it here.
 $SIG{CHLD} = sub {};
@@ -258,6 +259,16 @@ my @control_commands =
                       status_key => 'summary',
                       status_value => '',
                      },
+      outlook      => {command => 'outlook',
+                      value   => '5',
+                      status_key => 'outlook',
+                      status_value => 'This is a silly bug',
+                     },
+      nooutlook    => {command => 'outlook',
+                      value   => '',
+                      status_key => 'outlook',
+                      status_value => '',
+                     },
       affects      => {command => 'affects',
                       value   => 'foo',
                       status_key => 'affects',
@@ -299,6 +310,11 @@ my @control_commands =
                       status_key => 'keywords',
                       status_value => 'patch',
                      },
+      utf8_retitle => {command => 'retitle',
+                      value   => 'Thïs is a ütff8 title [♥♡☙☎]',
+                      status_key => 'subject',
+                      status_value => decode("utf8",'Thïs is a ütff8 title [♥♡☙☎]'),
+                     },
      );
 
 # In order for the archive/unarchive to work, we have to munge the summary file slightly