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 warnings;
use Test::More;

my $username = $ENV{S3_TEST_AWS_ACCESS_KEY_ID};
my $password = $ENV{S3_TEST_AWS_SECRET_ACCESS_KEY};
if ( $username && $password ) {
    plan tests => 1;
    use_ok 'Shell::Amazon::S3';
}
else {
    plan skip_all => "Set ENV:S3_TEST_USERNAME/PASSWORD/GROUP";
}