#!/usr/bin/perl
use strict;
BEGIN {
$| = 1;
}
#####################################################################
# Complete Generation Run
# Throw information on the testing module up.
diag("Testing with Test::Perl::Dist $Test::Perl::Dist::VERSION");
# Create the dist object
my $dist = Test::Perl::Dist->new_test_class_short(
500, '589', 'Perl::Dist::WiX',
);
# Check useragent method
my $ua = $dist->user_agent;
isa_ok( $ua, 'LWP::UserAgent' );
test_run_dist( $dist );
test_verify_files_short(500, '58');
done_testing(1);