]> Sergey Matveev's repositories - public-inbox.git/blobdiff - t/config.t
remove redundant NewsGroup class
[public-inbox.git] / t / config.t
index 50bc8d6d3eefb729417750a5721a9ddb1380a496..dc448cdffff6b7f92574a4a7903323ccd9e769b3 100644 (file)
@@ -1,18 +1,16 @@
-# 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;
 use Test::More;
 use PublicInbox::Config;
 use File::Temp qw/tempdir/;
-my $tmpdir = tempdir(CLEANUP => 1);
+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,9 +26,10 @@ my $tmpdir = tempdir(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',
-               'description' => 'development discussion',
-               'listname' => 'meta',
+               'name' => 'meta',
        }, "lookup matches expected output");
 
        is($cfg->lookup('blah@example.com'), undef,
@@ -43,8 +42,9 @@ 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',
+               'domain' => 'public-inbox.org',
+               'name' => 'test',
+               'url' => 'http://example.com/test',
        }, "lookup matches expected output for test");
 }