Add test for richtextxml

This commit is contained in:
Robin Dunn
2015-02-16 16:00:23 -08:00
parent 66631aa0b3
commit 464f3c5c39
2 changed files with 12 additions and 4 deletions

View File

@@ -1,14 +1,16 @@
import imp_unittest, unittest
import wtc
import wx
import wx.richtext
#---------------------------------------------------------------------------
class richtextxml_Tests(wtc.WidgetTestCase):
# TODO: Remove this test and add real ones.
def test_richtextxml1(self):
self.fail("Unit tests for richtextxml not implemented yet.")
handler = wx.richtext.RichTextXMLHandler()
wx.richtext.RichTextBuffer.AddHandler(handler)
#---------------------------------------------------------------------------