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 Test::More tests => 2;

my $file = 'blib/script/release';

use_ok( 'Module::Release' );
	
my $output = `$^X -Mblib -c $file 2>&1`;
			
like( $output, qr/syntax OK$/, 'script compiles' );