home *** CD-ROM | disk | FTP | other *** search
/ Borland Programmer's Resource / Borland_Programmers_Resource_CD_1995.iso / ntcode / ntperlb / t / nt / uservars.nt < prev   
Encoding:
Text File  |  1995-05-19  |  263 b   |  13 lines

  1. print "1..3\n";
  2.  
  3. if ("$LoginName" ne "") {print "ok 1\n";} else {print "not ok 1\n";}
  4.  
  5. if ("$NodeName" ne "")  {print "ok 2\n";} else {print "not ok 2\n";}
  6.  
  7. if ($FsType =~ /^(FAT|NTFS|HPFS)$/) {
  8.     print "ok 3\n";
  9. else {
  10.     print "not ok 3\n";
  11. }
  12.