The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
#!perl
use strict ;

use Test::More tests => 1;

my $mod ;

BEGIN {
	$mod = 'Linux::DVB::DVBT' ;
	use_ok( "$mod" );
}

no strict "refs";
my $ver ;
eval "\$ver = \$$mod"."::VERSION" ;
diag( "Testing $mod $ver, Perl $], $^X" );