Ejemplo n.º 1
0
 def test_GoToStart_cb(self):
     global widget
     root = Tkinter.Toplevel()
     widget = Player(master=root,
                     width=100,
                     height=26,
                     currentFrameIndex=1,
                     startFrame=1,
                     endFrame=10,
                     form2=1)
     widget.GoToStart_cb()
     self.assertEqual(widget.currentFrameIndex == widget.startFrame, True)
     pause()
     widget.master.master.destroy()