mirror of
https://github.com/python/cpython.git
synced 2025-08-03 08:34:29 +00:00
test of the nis module
This commit is contained in:
parent
7822681992
commit
3236b334ef
1 changed files with 19 additions and 0 deletions
19
Lib/test/test_nis.py
Normal file
19
Lib/test/test_nis.py
Normal 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)
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue