1b39c5158Smillert#!/usr/bin/perl -Tw 2b39c5158Smillert 3b39c5158Smillertuse strict; 4*6fb12b70Safresh1use warnings; 5b39c5158Smillertuse lib 't/lib'; 6b39c5158Smillert 7b39c5158Smillertuse Test::More tests => 2; 8b39c5158Smillertuse Test::Harness; 9b39c5158Smillert 10b39c5158Smillertmy $ver = $ENV{HARNESS_VERSION} or die "HARNESS_VERSION not set"; 11b39c5158Smillertok( $ver =~ /^[23].\d\d(_\d\d)?$/, "Version is proper format" ); 12b39c5158Smillertis( $ver, $Test::Harness::VERSION ); 13