Files
Phoenix/unittests/test_busyinfo.py
Robin Dunn 411d6f2902 Add wx.BusyInfo
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxPython/Phoenix/trunk@71801 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2012-06-18 02:14:38 +00:00

19 lines
447 B
Python

import imp_unittest, unittest
import wtc
import wx
#---------------------------------------------------------------------------
class busyinfo_Tests(wtc.WidgetTestCase):
def test_busyinfo1(self):
busy = wx.BusyInfo('This is a busy info message')
self.waitFor(250)
del busy
#---------------------------------------------------------------------------
if __name__ == '__main__':
unittest.main()