X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=t%2F07_bugreport.t;h=0366be41b9c5b72a5229c94f0aafe4a0bb01480e;hb=98422d682786dac1dd2191b60cb82584b92b73f3;hp=78fbdc74b4cd3742c30dd088ea1555eeea9492cb;hpb=46fa42780ecb746d7bec2fb01190b05584b9283e;p=debbugs.git diff --git a/t/07_bugreport.t b/t/07_bugreport.t index 78fbdc7..0366be4 100644 --- a/t/07_bugreport.t +++ b/t/07_bugreport.t @@ -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/\\#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