xref: /openbsd-src/gnu/usr.bin/perl/cpan/Win32/t/GetFolderPath.t (revision 91f110e064cd7c194e59e019b83bb7496c1c84d4)
1use strict;
2use Test;
3use Win32;
4
5plan tests => 1;
6
7# "windir" exists back to Win9X; "SystemRoot" only exists on WinNT and later.
8ok(Win32::GetFolderPath(Win32::CSIDL_WINDOWS), $ENV{WINDIR});
9