test of the nis module

This commit is contained in:
Barry Warsaw 1996-12-11 01:01:38 +00:00
parent 7822681992
commit 3236b334ef
1 changed files with 19 additions and 0 deletions

19
Lib/test/test_nis.py Normal file
View File

@ -0,0 +1,19 @@
import nis
verbose = 0
if __name__ == '__main__':
verbose = 1
maps = nis.maps()
for nismap in maps:
if verbose:
print nismap
mapping = nis.cat(nismap)
for k, v in mapping.items():
if verbose:
print ' ', k, v
if not k:
continue
if nis.match(k, nismap) <> v:
print "NIS match failed for key `%s' in map `%s'" % (k, nismap)