blob: 4d5615842c0d1c55ed59dadf9d6692d2883c2af7 [file] [log] [blame]
Roger E. Masse32e949d1997-01-03 23:00:13 +00001#! /usr/bin/env python
2"""Whimpy test script for the cd module
3 Roger E. Masse
4"""
5import cd
6from test_support import verbose
7
8cdattrs = ['BLOCKSIZE', 'CDROM', 'DATASIZE', 'ERROR', 'NODISC', 'PAUSED', 'PLAYING', 'READY',
Guido van Rossum41360a41998-03-26 19:42:58 +00009 'STILL', '__doc__', '__name__', 'atime', 'audio', 'catalog', 'control', 'createparser', 'error',
10 'ident', 'index', 'msftoframe', 'open', 'pnum', 'ptime']
Roger E. Masse32e949d1997-01-03 23:00:13 +000011
12
13# This is a very inobstrusive test for the existance of the cd module and all it's
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
17def main():
18 # touch all the attributes of cd without doing anything
19 if verbose:
Guido van Rossum41360a41998-03-26 19:42:58 +000020 print 'Touching cd module attributes...'
Roger E. Masse32e949d1997-01-03 23:00:13 +000021 for attr in cdattrs:
Guido van Rossum41360a41998-03-26 19:42:58 +000022 if verbose:
23 print 'touching: ', attr
24 getattr(cd, attr)
Roger E. Masse32e949d1997-01-03 23:00:13 +000025
26main()