def setUp(self): statgrab.init()
def test_ignore_errors(self): for v in (True, False): statgrab.init(v) statgrab.shutdown()
def test_multi_startup(self): # We should be able to do this repeatedly. for i in range(10): statgrab.init() statgrab.shutdown()
def test_one_startup(self): statgrab.init() statgrab.shutdown()