]> git.donarmstrong.com Git - debbugs.git/blobdiff - t/07_bugreport.t
Fix mbox output of bugreports to properly use filehandle
[debbugs.git] / t / 07_bugreport.t
index 78fbdc74b4cd3742c30dd088ea1555eeea9492cb..0366be41b9c5b72a5229c94f0aafe4a0bb01480e 100644 (file)
@@ -1,7 +1,7 @@
 # -*- mode: cperl;-*-
 
 
-use Test::More tests => 3;
+use Test::More tests => 6;
 
 use warnings;
 use strict;
@@ -77,5 +77,13 @@ $mech->get_ok('http://localhost:'.$port.'/?bug=1',
 ok($mech->content() =~ qr/\<title\>\#1.+Submitting a bug/i,
    'Title of bug is submitting a bug');
 
+$mech->get_ok('http://localhost:'.$port.'/?bug=1;mbox=yes',
+              'Page received ok');
+ok($mech->content() =~ qr/Subject: Submitting a bug/i,
+   'Subject of bug maibox is right');
+ok($mech->content() =~ qr/^From /m,
+   'Starts with a From appropriately');
+
+
 # Other tests for bugs in the page should be added here eventually