diff options
Diffstat (limited to 'lib/Test/Harness/t/00compile.t')
-rw-r--r-- | lib/Test/Harness/t/00compile.t | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/Test/Harness/t/00compile.t b/lib/Test/Harness/t/00compile.t index 5b795a7e94..1f83bf67ef 100644 --- a/lib/Test/Harness/t/00compile.t +++ b/lib/Test/Harness/t/00compile.t @@ -13,6 +13,7 @@ BEGIN { use Test::More tests => 5; BEGIN { use_ok 'Test::Harness' } +BEGIN { diag( "Testing Test::Harness $Test::Harness::VERSION" ) } BEGIN { use_ok 'Test::Harness::Straps' } @@ -21,4 +22,5 @@ BEGIN { use_ok 'Test::Harness::Iterator' } BEGIN { use_ok 'Test::Harness::Assert' } # If the $VERSION is set improperly, this will spew big warnings. -use_ok 'Test::Harness', 1.1601; +BEGIN { use_ok 'Test::Harness', 1.1601 } + |