The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
#!/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");
}