X-Git-Url: http://www.git.stargrave.org/?a=blobdiff_plain;f=t%2Fcgi.t;h=b59ca54ae15e6d96ea4683e691cd8b5256caf798;hb=788db1ec53c00b1a1a9457dc156bc7990736e88e;hp=365acd842c20ee5c91fcc1d9eac3e38ab3b1a82a;hpb=b39e6e140d7a074dfb5c7b768285736511e04d97;p=public-inbox.git diff --git a/t/cgi.t b/t/cgi.t index 365acd84..b59ca54a 100644 --- 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),