The Perl and Raku Conference 2025: Greenville, South Carolina - June 27-29 Learn more
12345678910111213 use Test::Most;BEGIN { $ENV{OPENTRACING_INTERFACE} = 1 unless exists $ENV{OPENTRACING_INTERFACE};}## This breaks if it would be set to 0 externally, so, don't do that!!!BEGIN { use_ok('OpenTracing::Role::Scope');};done_testing;
use
Test::Most;
BEGIN {
$ENV
{OPENTRACING_INTERFACE} = 1
unless
exists
{OPENTRACING_INTERFACE};
}
#
# This breaks if it would be set to 0 externally, so, don't do that!!!
use_ok(
'OpenTracing::Role::Scope'
);
};
done_testing;