- or download this
use Test::More tests => 2;
...
BEGIN { use_ok( 'Backend::A' ); }
BEGIN { use_ok( 'Backend::B' ); }
- or download this
use Test::More tests => 2;
...
BEGIN { use_ok( 'Backend::A' ); }
BEGIN { use_ok( 'Backend::B' ); }
- or download this
use Test::More tests => 2;
BEGIN { use_ok( 'Backend::A' ); }
BEGIN { no warnings qw( redefine );
use_ok( 'Backend::B' ); }
- or download this
# having given up on testing temporarily:
no warnings qw( redefine );
require Backend::A;
require Backend::B;