PR #76: a few wx.lib things for Py33

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxPython/Phoenix/trunk@76375 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robin Dunn
2014-04-19 21:26:03 +00:00
parent cc91914795
commit 90ee034d74
27 changed files with 439 additions and 142 deletions

View File

@@ -0,0 +1,22 @@
import imp_unittest, unittest
import wtc
import wx
try:
import wx.lib.agw.xlsgrid as XG
skipIt = False
except:
skipIt = False
#---------------------------------------------------------------------------
class lib_agw_xlsgrid_Tests(wtc.WidgetTestCase):
@unittest.skipIf(skipIt, 'Requires xlrd')
def test_lib_agw_xlsgridCtor(self):
xg = XG.XLSGrid(self.frame)
#---------------------------------------------------------------------------
if __name__ == '__main__':
unittest.main()