The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
use Test;

plan 4;
use Log::Selective; pass "(dummy instead of broken use_ok)";
lives_ok { Log::Selective::select(:foo, :all) }, "Selected tags ':foo' and ':all'";

skip_rest("looping tests"); exit;

ok (note "This should be output", :foo), 'tag in list';
ok (note "This should also be output", :bar), 'tag not in list (but caught by :all)';