The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.
use strict;
use Test::More tests => 2;

use PerlIO::via::Limit sensitive => 1;
ok( PerlIO::via::Limit->sensitive, 'PerlIO::via::Limit::sensitive');

PerlIO::via::Limit->sensitive(undef);
ok( ! PerlIO::via::Limit->sensitive, 'set PerlIO::via::Limit::sensitive to undef');

1;
__END__