]> Sergey Matveev's repositories - public-inbox.git/blobdiff - t/config.t
update copyright headers and email addresses
[public-inbox.git] / t / config.t
index 145589ead5d227e50e21a84589d7b1ee0b770a2a..88ed62a4c05f55e509f96e6fff846a3f29691ab0 100644 (file)
@@ -1,4 +1,4 @@
-# Copyright (C) 2014, Eric Wong <normalperson@yhbt.net> and all contributors
+# Copyright (C) 2014-2015 all contributors <meta@public-inbox.org>
 # License: AGPLv3 or later (https://www.gnu.org/licenses/agpl-3.0.txt)
 use strict;
 use warnings;
@@ -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();