]> Sergey Matveev's repositories - public-inbox.git/blobdiff - t/config.t
remove redundant NewsGroup class
[public-inbox.git] / t / config.t
index 48df08716c654fac0f3ca5852e739a85fd41b683..dc448cdffff6b7f92574a4a7903323ccd9e769b3 100644 (file)
@@ -9,10 +9,8 @@ my $tmpdir = tempdir('pi-config-XXXXXX', TMPDIR => 1, CLEANUP => 1);
 
 {
        is(system(qw(git init -q --bare), $tmpdir), 0, "git init successful");
-       {
-               local $ENV{GIT_DIR} = $tmpdir;
-               is(system(qw(git config foo.bar hihi)), 0, "set config");
-       }
+       my @cmd = ('git', "--git-dir=$tmpdir", qw(config foo.bar hihi));
+       is(system(@cmd), 0, "set config");
 
        my $tmp = PublicInbox::Config->new("$tmpdir/config");
 
@@ -28,8 +26,10 @@ my $tmpdir = tempdir('pi-config-XXXXXX', TMPDIR => 1, CLEANUP => 1);
        is_deeply($cfg->lookup('meta@public-inbox.org'), {
                'mainrepo' => '/home/pi/meta-main.git',
                'address' => 'meta@public-inbox.org',
+               'domain' => 'public-inbox.org',
+               'url' => 'http://example.com/meta',
                -primary_address => 'meta@public-inbox.org',
-               'listname' => 'meta',
+               'name' => 'meta',
        }, "lookup matches expected output");
 
        is($cfg->lookup('blah@example.com'), undef,
@@ -42,7 +42,9 @@ my $tmpdir = tempdir('pi-config-XXXXXX', TMPDIR => 1, CLEANUP => 1);
                              'test@public-inbox.org'],
                -primary_address => 'try@public-inbox.org',
                'mainrepo' => '/home/pi/test-main.git',
-               'listname' => 'test',
+               'domain' => 'public-inbox.org',
+               'name' => 'test',
+               'url' => 'http://example.com/test',
        }, "lookup matches expected output for test");
 }