The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
#!/usr/bin/perl

use strict;
use Carp;
BEGIN {
	$|  = 1;
	$^W = 1;
}

use Test::Perl::Dist 0.300;
use File::Spec::Functions qw(catdir);

unless ( $ENV{RELEASE_TESTING} ) {
	plan( skip_all => "Release tests not required for installation" );
}

#####################################################################
# Complete Generation Run

# Create the dist object
my $dist = Test::Perl::Dist->new_test_class_medium(
	905, '5120', 'Perl::Dist::Strawberry', catdir(qw(xt release)), 
	msi => 0,
	user_agent_cache => 0,
);

test_run_dist( $dist );

test_verify_files_medium(905, '512', catdir(qw(xt release)));

done_testing();