The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.
#!/usr/bin/env perl

use strict;
use warnings;
use Test::Most;

if($ENV{RELEASE_TESTING}) {
	eval {
		require Test::CleanNamespaces;
	};
	if($@) {
		plan(skip_all => 'Test::CleanNamespaces not installed');
	} else {
		Test::CleanNamespaces->all_namespaces_clean();
	}
} else {
	plan(skip_all => "Author tests not required for installation");
}