Beispiel #1
0
 def testFeedbackCallbacks(self):
     """_on_play, _pause, _stop and _quit should work."""
     fb = Feedback()
     try:
         fb._on_play()
         fb._on_pause()
         fb._on_stop()
         fb._on_quit()
     except:
         self.fail()
Beispiel #2
0
 def testFeedbackCallbacks(self):
     """_on_play, _pause, _stop and _quit should work."""
     fb = Feedback()
     try:
         fb._on_play()
         fb._on_pause()
         fb._on_stop()
         fb._on_quit()
     except:
         self.fail()
Beispiel #3
0
 def testFeedbackInitWithArguments(self):
     """Feedback should instantiate with one argument."""
     try:
         fb = Feedback(None)
     except:
         self.fail()
 def __init__(self, pp):
     Feedback.__init__(self, pp)