summaryrefslogtreecommitdiff
path: root/src/python/stdlib/test/test_cd.py
diff options
context:
space:
mode:
authorLieuwe <lieuwemo@gmail.com>2011-03-18 16:04:51 (GMT)
committer Lieuwe <lieuwemo@gmail.com>2011-03-18 16:04:51 (GMT)
commit9c39875ef09d439ef51716dba091188f72977f5e (patch)
treefb0fd27a1bcd3e54a1913852c23aa137ee5eb30b /src/python/stdlib/test/test_cd.py
parentbc8af4e2101ac93bdc51b59ee64fa43ecb2442f3 (diff)
downloadpowder-9c39875ef09d439ef51716dba091188f72977f5e.zip
powder-9c39875ef09d439ef51716dba091188f72977f5e.tar.gz
...
Diffstat (limited to 'src/python/stdlib/test/test_cd.py')
-rwxr-xr-xsrc/python/stdlib/test/test_cd.py30
1 files changed, 30 insertions, 0 deletions
diff --git a/src/python/stdlib/test/test_cd.py b/src/python/stdlib/test/test_cd.py
new file mode 100755
index 0000000..edaa82b
--- /dev/null
+++ b/src/python/stdlib/test/test_cd.py
@@ -0,0 +1,30 @@
+#! /usr/bin/env python
+"""Whimpy test script for the cd module
+ Roger E. Masse
+"""
+from test.test_support import verbose, import_module
+
+cd = import_module('cd')
+
+cdattrs = ['BLOCKSIZE', 'CDROM', 'DATASIZE', 'ERROR', 'NODISC', 'PAUSED', 'PLAYING', 'READY',
+ 'STILL', '__doc__', '__name__', 'atime', 'audio', 'catalog', 'control', 'createparser', 'error',
+ 'ident', 'index', 'msftoframe', 'open', 'pnum', 'ptime']
+
+
+# This is a very inobtrusive test for the existence of the cd module and all its
+# attributes. More comprehensive examples can be found in Demo/cd and
+# require that you have a CD and a CD ROM drive
+
+def test_main():
+ # touch all the attributes of cd without doing anything
+ if verbose:
+ print 'Touching cd module attributes...'
+ for attr in cdattrs:
+ if verbose:
+ print 'touching: ', attr
+ getattr(cd, attr)
+
+
+
+if __name__ == '__main__':
+ test_main()