about summary refs log tree commit homepage
path: root/t
diff options
context:
space:
mode:
authorEric Wong <e@80x24.org>2016-05-14 06:10:36 +0000
committerEric Wong <e@80x24.org>2016-05-16 02:55:58 +0000
commit48b21cb662c1e17b7219612bff6ea14b98c85221 (patch)
tree1f5b29c80c52dea26f1a9f33fae9cbe515e3debf /t
parent56008dad820a47fe70d2d69a51248ff1b87beabf (diff)
downloadpublic-inbox-48b21cb662c1e17b7219612bff6ea14b98c85221.tar.gz
From the beginning, we've avoided objects here in favor
of faster startup time; but it may not be worth it
since a persistent httpd/nntpd is faster and -mda
isn't hit as often.
Diffstat (limited to 't')
-rw-r--r--t/config.t6
1 files changed, 4 insertions, 2 deletions
diff --git a/t/config.t b/t/config.t
index 7a63aa76..76f6065d 100644
--- a/t/config.t
+++ b/t/config.t
@@ -28,8 +28,9 @@ 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',
+                'url' => 'http://example.com/meta',
                 -primary_address => 'meta@public-inbox.org',
-                'inbox' => 'meta',
+                'name' => 'meta',
         }, "lookup matches expected output");
 
         is($cfg->lookup('blah@example.com'), undef,
@@ -42,7 +43,8 @@ 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',
-                'inbox' => 'test',
+                'name' => 'test',
+                'url' => 'http://example.com/test',
         }, "lookup matches expected output for test");
 }