]> Sergey Matveev's repositories - public-inbox.git/blobdiff - t/psgi_search.t
config: support "inboxdir" in addition to "mainrepo"
[public-inbox.git] / t / psgi_search.t
index 0c4bdcd1d75c5558f7f15a303fd9cdd0bac0cb01..4cd0e499c1841035e72877feb22c9a0c75a513d1 100644 (file)
@@ -21,7 +21,7 @@ use_ok $_ foreach (@mods, qw(PublicInbox::SearchIdx));
 my $tmpdir = tempdir('pi-psgi-search.XXXXXX', TMPDIR => 1, CLEANUP => 1);
 
 my $ibx = PublicInbox::Inbox->new({
-       mainrepo => $tmpdir,
+       inboxdir => $tmpdir,
        address => 'git@vger.kernel.org',
        name => 'test',
 });
@@ -45,10 +45,10 @@ $im->done;
 PublicInbox::SearchIdx->new($ibx, 1)->index_sync;
 
 my $cfgpfx = "publicinbox.test";
-my $config = PublicInbox::Config->new({
-       "$cfgpfx.address" => 'git@vger.kernel.org',
-       "$cfgpfx.mainrepo" => $tmpdir,
-});
+my $config = PublicInbox::Config->new(\<<EOF);
+$cfgpfx.address=git\@vger.kernel.org
+$cfgpfx.inboxdir=$tmpdir
+EOF
 my $www = PublicInbox::WWW->new($config);
 test_psgi(sub { $www->call(@_) }, sub {
        my ($cb) = @_;