Example #1
0
 def test_timer_sleep(self):
     """Testing Timer: internal sleep"""
     with self.assertRaises(ValueError):
         x = Timer(0.1, lambda: None)
         x.fun = _stop(x)
         x.running = True
         x._run()
         x.stop()
         time.sleep = _fail
         Timer.wait(-1, seconds=0.1)
Example #2
0
 def test_timer_sleep(self):
     """Testing Timer: internal sleep"""
     with self.assertRaises(ValueError):
         x = Timer(0.1, lambda: None)
         x.fun = _stop(x)
         x.running = True
         x._run()
         x.stop()
         time.sleep = _fail
         Timer.wait(-1, seconds=0.1)
Example #3
0
 def test_timer_except(self):
     """Testing Timer: internal run"""
     with self.assertRaises(ValueError):
         x = Timer(0.1, _testing_fn_raise)
         x.running = True
         x._run()
Example #4
0
 def test_not_running(self):
     """Testing Timer: not running thread"""
     x = Timer(0.1, lambda: None)
     x.running = True
     x.stop()
     x._run()
Example #5
0
 def test_timer_except(self):
     """Testing Timer: internal run"""
     with self.assertRaises(ValueError):
         x = Timer(0.1, _testing_fn_raise)
         x.running = True
         x._run()
Example #6
0
 def test_not_running(self):
     """Testing Timer: not running thread"""
     x = Timer(0.1, lambda: None)
     x.running = True
     x.stop()
     x._run()