X-Git-Url: http://www.git.stargrave.org/?a=blobdiff_plain;f=t%2Flei.t;h=690878ce7262ae9131adb668718ef415fec5c47e;hb=af0b0fb7a454470a32c452119d0392e0dedb3fe1;hp=a95a0efc9a5f79d6d487c9b1b2b2229e4c7b577a;hpb=d49c0789d208e66121bfb68ff0c48d7612a7cd8e;p=public-inbox.git diff --git a/t/lei.t b/t/lei.t index a95a0efc..690878ce 100644 --- a/t/lei.t +++ b/t/lei.t @@ -1,5 +1,5 @@ #!perl -w -# Copyright (C) 2020 all contributors +# Copyright (C) 2020-2021 all contributors # License: AGPL-3.0+ use strict; use v5.10.1; @@ -154,38 +154,38 @@ my $setup_publicinboxes = sub { $seen || BAIL_OUT 'no imports'; }; -my $test_extinbox = sub { +my $test_external = sub { $setup_publicinboxes->(); $cleanup->(); - $lei->('ls-extinbox'); - is($out.$err, '', 'ls-extinbox no output, yet'); + $lei->('ls-external'); + is($out.$err, '', 'ls-external no output, yet'); ok(!-e $config_file && !-e $store_dir, - 'nothing created by ls-extinbox'); + 'nothing created by ls-external'); my $cfg = PublicInbox::Config->new; $cfg->each_inbox(sub { my ($ibx) = @_; - ok($lei->(qw(add-extinbox -q), $ibx->{inboxdir}), - 'added extinbox'); + ok($lei->(qw(add-external -q), $ibx->{inboxdir}), + 'added external'); is($out.$err, '', 'no output'); }); ok(-s $config_file && -e $store_dir, - 'add-extinbox created config + store'); + 'add-external created config + store'); my $lcfg = PublicInbox::Config->new($config_file); $cfg->each_inbox(sub { my ($ibx) = @_; - is($lcfg->{"extinbox.$ibx->{inboxdir}.boost"}, 0, + is($lcfg->{"external.$ibx->{inboxdir}.boost"}, 0, "configured boost on $ibx->{name}"); }); - $lei->('ls-extinbox'); - like($out, qr/boost=0\n/s, 'ls-extinbox has output'); + $lei->('ls-external'); + like($out, qr/boost=0\n/s, 'ls-external has output'); }; my $test_lei_common = sub { $test_help->(); $test_config->(); $test_init->(); - $test_extinbox->(); + $test_external->(); }; my $test_lei_oneshot = $ENV{TEST_LEI_ONESHOT};