Hide keyboard shortcuts

Hot-keys on this page

r m x p   toggle line displays

j k   next/prev highlighted chunk

0   (zero) top of page

1   (one) first highlighted chunk

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

import unittest 

 

import lsst.utils.tests 

import lsst.obs.comCam 

 

 

class ImportTest(unittest.TestCase): 

def testImport(self): 

self.assertTrue(hasattr(lsst.obs.comCam, "makeCamera")) 

 

 

class TestMemory(lsst.utils.tests.MemoryTestCase): 

pass 

 

 

def setup_module(module): 

lsst.utils.tests.init() 

 

 

20 ↛ 21line 20 didn't jump to line 21, because the condition on line 20 was never trueif __name__ == "__main__": 

lsst.utils.tests.init() 

unittest.main()