1997-01-03 19:00:13 -04:00
|
|
|
#! /usr/bin/env python
|
|
|
|
"""Whimpy test script for the cd module
|
|
|
|
Roger E. Masse
|
|
|
|
"""
|
|
|
|
import cd
|
2002-07-30 20:27:12 -03:00
|
|
|
from test.test_support import verbose
|
1997-01-03 19:00:13 -04:00
|
|
|
|
|
|
|
cdattrs = ['BLOCKSIZE', 'CDROM', 'DATASIZE', 'ERROR', 'NODISC', 'PAUSED', 'PLAYING', 'READY',
|
1998-03-26 15:42:58 -04:00
|
|
|
'STILL', '__doc__', '__name__', 'atime', 'audio', 'catalog', 'control', 'createparser', 'error',
|
|
|
|
'ident', 'index', 'msftoframe', 'open', 'pnum', 'ptime']
|
1997-01-03 19:00:13 -04:00
|
|
|
|
|
|
|
|
2005-07-22 18:49:32 -03:00
|
|
|
# This is a very inobtrusive test for the existence of the cd module and all its
|
1997-01-03 19:00:13 -04:00
|
|
|
# attributes. More comprehensive examples can be found in Demo/cd and
|
|
|
|
# require that you have a CD and a CD ROM drive
|
|
|
|
|
2008-03-03 00:19:29 -04:00
|
|
|
def test_main():
|
1997-01-03 19:00:13 -04:00
|
|
|
# touch all the attributes of cd without doing anything
|
|
|
|
if verbose:
|
1998-03-26 15:42:58 -04:00
|
|
|
print 'Touching cd module attributes...'
|
1997-01-03 19:00:13 -04:00
|
|
|
for attr in cdattrs:
|
1998-03-26 15:42:58 -04:00
|
|
|
if verbose:
|
|
|
|
print 'touching: ', attr
|
|
|
|
getattr(cd, attr)
|
1997-01-03 19:00:13 -04:00
|
|
|
|
2008-03-03 00:19:29 -04:00
|
|
|
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
test_main()
|