Files
Phoenix/unittests/test_ribbon_panel.py
2016-06-21 20:30:30 -07:00

17 lines
449 B
Python

import unittest
import wtc
import wx
#---------------------------------------------------------------------------
class ribbon_panel_Tests(wtc.WidgetTestCase):
# TODO: Remove this test and add real ones.
def test_ribbon_panel1(self):
self.fail("Unit tests for ribbon_panel not implemented yet.")
#---------------------------------------------------------------------------
if __name__ == '__main__':
unittest.main()