X-Git-Url: http://www.git.stargrave.org/?p=public-inbox.git;a=blobdiff_plain;f=t%2Fconfig.t;h=76f6065d0e71bc302e641d0b12040a21d41cbc11;hp=7a63aa7639e651f3e072d4064e684c00083d45c3;hb=48b21cb662c1e17b7;hpb=56008dad820a47fe70d2d69a51248ff1b87beabf 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"); }