about summary refs log tree commit homepage
path: root/t
diff options
context:
space:
mode:
authorEric Wong <e@80x24.org>2014-04-21 10:43:59 +0000
committerEric Wong <e@80x24.org>2014-04-21 10:43:59 +0000
commit788db1ec53c00b1a1a9457dc156bc7990736e88e (patch)
treef3d12055bf141e23b379a466d2eb6f76cc4eb7c2 /t
parentbbe5d24accf4f10af1a9a5ae46df10604c1410f5 (diff)
downloadpublic-inbox-788db1ec53c00b1a1a9457dc156bc7990736e88e.tar.gz
Do not repeat ourselves, just use the same description file
gitweb uses to avoid surprising users.
Diffstat (limited to 't')
-rw-r--r--t/cgi.t4
-rw-r--r--t/config.t2
2 files changed, 3 insertions, 3 deletions
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),
diff --git a/t/config.t b/t/config.t
index 50bc8d6d..d4700fc9 100644
--- a/t/config.t
+++ b/t/config.t
@@ -29,7 +29,6 @@ my $tmpdir = tempdir(CLEANUP => 1);
                 'mainrepo' => '/home/pi/meta-main.git',
                 'address' => 'meta@public-inbox.org',
                 -primary_address => 'meta@public-inbox.org',
-                'description' => 'development discussion',
                 'listname' => 'meta',
         }, "lookup matches expected output");
 
@@ -43,7 +42,6 @@ my $tmpdir = tempdir(CLEANUP => 1);
                               'test@public-inbox.org'],
                 -primary_address => 'try@public-inbox.org',
                 'mainrepo' => '/home/pi/test-main.git',
-                'description' => 'test/sandbox area, occasionally reset',
                 'listname' => 'test',
         }, "lookup matches expected output for test");
 }