symbian-qemu-0.9.1-12/python-2.6.1/Lib/test/test_cd.py
changeset 1 2fb8b9db1c86
equal deleted inserted replaced
0:ffa851df0825 1:2fb8b9db1c86
       
     1 #! /usr/bin/env python
       
     2 """Whimpy test script for the cd module
       
     3    Roger E. Masse
       
     4 """
       
     5 import cd
       
     6 from test.test_support import verbose
       
     7 
       
     8 cdattrs = ['BLOCKSIZE', 'CDROM', 'DATASIZE', 'ERROR', 'NODISC', 'PAUSED', 'PLAYING', 'READY',
       
     9            'STILL', '__doc__', '__name__', 'atime', 'audio', 'catalog', 'control', 'createparser', 'error',
       
    10            'ident', 'index', 'msftoframe', 'open', 'pnum', 'ptime']
       
    11 
       
    12 
       
    13 # This is a very inobtrusive test for the existence of the cd module and all its
       
    14 # attributes.  More comprehensive examples can be found in Demo/cd and
       
    15 # require that you have a CD and a CD ROM drive
       
    16 
       
    17 def test_main():
       
    18     # touch all the attributes of cd without doing anything
       
    19     if verbose:
       
    20         print 'Touching cd module attributes...'
       
    21     for attr in cdattrs:
       
    22         if verbose:
       
    23             print 'touching: ', attr
       
    24         getattr(cd, attr)
       
    25 
       
    26 
       
    27 
       
    28 if __name__ == '__main__':
       
    29     test_main()