2 """Whimpy test script for the al module
5 from test
.test_support
import verbose
, import_module
6 al
= import_module('al', deprecated
=True)
8 alattrs
= ['__doc__', '__name__', 'getdefault', 'getminmax', 'getname', 'getparams',
9 'newconfig', 'openport', 'queryparams', 'setparams']
11 # This is a very unobtrusive test for the existence of the al module and all its
12 # attributes. More comprehensive examples can be found in Demo/al
15 # touch all the attributes of al without doing anything
17 print 'Touching al module attributes...'
20 print 'touching: ', attr
24 if __name__
== '__main__':