]> Sergey Matveev's repositories - public-inbox.git/blobdiff - t/config.t
config: use description file for gitweb
[public-inbox.git] / t / config.t
index 145589ead5d227e50e21a84589d7b1ee0b770a2a..d4700fc9b009e73e874ab8024acd6a1b828b9231 100644 (file)
@@ -25,14 +25,25 @@ 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'
+       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,
                "non-existent lookup returns undef");
+
+       my $test = $cfg->lookup('test@public-inbox.org');
+       is_deeply($test, {
+               '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',
+               'listname' => 'test',
+       }, "lookup matches expected output for test");
 }
 
 done_testing();