]> Sergey Matveev's repositories - public-inbox.git/blobdiff - t/cgi.t
view: consistent ordering of Cc: addresses
[public-inbox.git] / t / cgi.t
diff --git a/t/cgi.t b/t/cgi.t
index 365acd842c20ee5c91fcc1d9eac3e38ab3b1a82a..a16ebd8daa5485f57eb3b3647655f23794fd2506 100644 (file)
--- a/t/cgi.t
+++ b/t/cgi.t
@@ -28,10 +28,12 @@ my $cfgpfx = "publicinbox.test";
        is(1, mkdir($pi_home, 0755), "setup ~/.public-inbox");
        is(0, system(qw(git init -q --bare), $maindir), "git init (main)");
 
+       open my $fh, '>', "$maindir/description" or die "open: $!\n";
+       print $fh "test for public-inbox\n";
+       close $fh or die "close: $!\n";
        my %cfg = (
                "$cfgpfx.address" => $addr,
                "$cfgpfx.mainrepo" => $maindir,
-               "$cfgpfx.description" => 'test for public-inbox',
        );
        while (my ($k,$v) = each %cfg) {
                is(0, system(qw(git config --file), $pi_config, $k, $v),
@@ -118,7 +120,9 @@ EOF
        like($res->{head}, qr/Status: 200 OK/, "index returns 200");
 
        my $idx = cgi_run("/test/index.html");
-       $idx->{body} =~ s!/index.html(\?r=)!/$1!; # dirty...
+       $idx->{body} =~ s!/index.html(\?r=)!/$1!g; # dirty...
+       $idx->{body} = [ split(/\n/, $idx->{body}) ];
+       $res->{body} = [ split(/\n/, $res->{body}) ];
        is_deeply($res, $idx,
                '/$LISTNAME/ and /$LISTNAME/index.html are nearly identical');
        # more checks in t/feed.t