]> git.decadent.org.uk Git - maypole.git/commitdiff
fixed cgi_maypole header test!
authorAaron Trevena <aaron.trevena@gmail.com>
Tue, 2 Aug 2005 18:20:26 +0000 (18:20 +0000)
committerAaron Trevena <aaron.trevena@gmail.com>
Tue, 2 Aug 2005 18:20:26 +0000 (18:20 +0000)
git-svn-id: http://svn.maypole.perl.org/Maypole/trunk@366 48953598-375a-da11-a14b-00016c27c3ee

t/cgi_maypole.t

index e1798667303f12b20eabf887b729664b13317547..22a50b37046f09d9744caa8bc56c93a613175bbd 100644 (file)
@@ -108,11 +108,13 @@ SKIP: {
     };
     diag $@ if $@;
 
-    $compare = join "\cM\cJ", 'Content-length: 12',
-        'X-bender: kiss my shiny metal ass',
+    my $CL = 'Content-length: 12';
+    my $XB = 'X-bender: kiss my shiny metal ass';
+    my $nl = "\cM\cJ";
+    my $re = join $nl, "($CL$nl$XB)|($XB$nl$CL)",
         'Content-Type: text/plain; charset=iso8859-1',
         '', 'Hello World!';
-    is($stdout, $compare, '... prints output, including custom headers');
+    like($stdout, qr/$re/, '... prints output, including custom headers');
 }
 
 # get_template_root()