X-Git-Url: http://www.git.stargrave.org/?a=blobdiff_plain;f=t%2Flei.t;h=764a7fe4227f631372936913ca00d3d69934d2ea;hb=0d649fc15eab07976344a6ae32a946b2b1c32f4f;hp=a95a0efc9a5f79d6d487c9b1b2b2229e4c7b577a;hpb=73b40ff62a7ab305443a9fb81b16d2b10b15bf60;p=public-inbox.git diff --git a/t/lei.t b/t/lei.t index a95a0efc..764a7fe4 100644 --- a/t/lei.t +++ b/t/lei.t @@ -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};