~janusz-martyniak/mcdb/mice.cdb.client.api-python

« back to all changes in this revision

Viewing changes to src/test/unittest__init__.py

  • Committer: Antony Wilson
  • Date: 2011-09-01 08:10:55 UTC
  • Revision ID: antony.wilson@stfc.ac.uk-20110901081055-5hcu1wbeh9f75sdd
add calibration, fixes to cabling, pylint stuff

Show diffs side-by-side

added added

removed removed

Lines of Context:
14
14
 
15
15
    def test_imports(self):
16
16
        "Test __init__ imports."
17
 
        from cdb import CdbError
18
 
        from cdb import CdbPermanentError
19
 
        from cdb import CdbTemporaryError
20
 
        from cdb import AlarmHandler
21
 
        from cdb import Beamline
22
 
        from cdb import Control
23
 
        from cdb import Geometry
 
17
        from cdb import CdbError #pylint: disable-msg=W0612
 
18
        from cdb import CdbPermanentError #pylint: disable-msg=W0612
 
19
        from cdb import CdbTemporaryError #pylint: disable-msg=W0612
 
20
        from cdb import AlarmHandler #pylint: disable-msg=W0612
 
21
        from cdb import Beamline #pylint: disable-msg=W0612
 
22
        from cdb import Cabling #pylint: disable-msg=W0612
 
23
        from cdb import Calibration #pylint: disable-msg=W0612
 
24
        from cdb import Control #pylint: disable-msg=W0612
 
25
        from cdb import Geometry #pylint: disable-msg=W0612
24
26
        self.assertEqual(dir(), _constants.CLASS_LIST)
25
27
 
26
28
def suite():