More tests

This commit is contained in:
Robin Dunn
2016-07-04 22:37:01 -07:00
parent 383fa33fb0
commit a114260e57
3 changed files with 63 additions and 2 deletions

View File

@@ -24,12 +24,14 @@ class ribbon_panel_Tests(wtc.WidgetTestCase):
def test_ribbon_panel3(self):
bar = wx.ribbon.RibbonBar(self.frame)
p = wx.ribbon.RibbonPanel()
p.Create(self.frame)
p.Create(bar)
def test_ribbon_panel4(self):
p = wx.ribbon.RibbonPanel(self.frame)
bar = wx.ribbon.RibbonBar(self.frame)
p = wx.ribbon.RibbonPanel(bar)
p.GetMinimisedIcon()
p.HasExtButton()