Add the original source packages to maemo, source lenny
[dh-make-perl] / dev / i386 / libtest-harness-perl / libtest-harness-perl-3.12 / t / compat / version.t
1 #!/usr/bin/perl -Tw
2
3 use strict;
4 use lib 't/lib';
5
6 use Test::More tests => 2;
7 use Test::Harness;
8
9 my $ver = $ENV{HARNESS_VERSION} or die "HARNESS_VERSION not set";
10 ok( $ver =~ /^[23].\d\d(_\d\d)?$/, "Version is proper format" );
11 is( $ver, $Test::Harness::VERSION );