mirror of
https://github.com/wxWidgets/Phoenix.git
synced 2025-09-05 17:30:26 +02:00
23 lines
517 B
Python
23 lines
517 B
Python
import unittest
|
|
from unittests 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()
|