]> Sergey Matveev's repositories - public-inbox.git/blobdiff - t/config.t
config: use description file for gitweb
[public-inbox.git] / t / config.t
index cd61fe091d2d607dfde12f2c286e4ef0b4becf75..d4700fc9b009e73e874ab8024acd6a1b828b9231 100644 (file)
@@ -25,11 +25,11 @@ my $tmpdir = tempdir(CLEANUP => 1);
        ok(-r $f, "$f is readable");
 
        my $cfg = PublicInbox::Config->new($f);
-       is_deeply($cfg->lookup('bugs@public-inbox.org'), {
-               'mainrepo' => '/home/pi/bugs-main.git',
-               'address' => 'bugs@public-inbox.org',
-               'description' => 'development discussion',
-               'listname' => 'bugs',
+       is_deeply($cfg->lookup('meta@public-inbox.org'), {
+               'mainrepo' => '/home/pi/meta-main.git',
+               'address' => 'meta@public-inbox.org',
+               -primary_address => 'meta@public-inbox.org',
+               'listname' => 'meta',
        }, "lookup matches expected output");
 
        is($cfg->lookup('blah@example.com'), undef,
@@ -40,8 +40,8 @@ my $tmpdir = tempdir(CLEANUP => 1);
                'address' => ['try@public-inbox.org',
                              'sandbox@public-inbox.org',
                              '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");
 }