RE: $Win32::VERSION problem
[p5sagit/p5-mst-13.2.git] / ext / Win32 / t / GetOSVersion.t
CommitLineData
83a611dd 1use strict;
2use Test;
3use Win32;
95015c6e 4
83a611dd 5plan tests => 1;
95015c6e 6
7my $scalar = Win32::GetOSVersion();
8my @array = Win32::GetOSVersion();
9
10print "not " unless $scalar == $array[4];
11print "ok 1\n";