]> 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 dedd4458e0b342fed92ba16f97472dd0e7285e4f..0366be41b9c5b72a5229c94f0aafe4a0bb01480e 100644 (file)
@@ -1,7 +1,7 @@
 # -*- mode: cperl;-*-
 
 
-use Test::More tests => 3;
+use Test::More tests => 6;
 
 use warnings;
 use strict;
@@ -74,7 +74,16 @@ my $mech = Test::WWW::Mechanize->new();
 
 $mech->get_ok('http://localhost:'.$port.'/?bug=1',
              'Page received ok');
-ok($mech->content() =~ qr/\<title\>\#1\s+\-\s+Submitting a bug/i,
+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
+