mirror of
https://github.com/wxWidgets/Phoenix.git
synced 2025-07-21 12:41:10 +02:00
Xfail unimplemented access test instead of failing it
(cherry picked from commit 92fc4afa9d
)
18 lines
468 B
Python
18 lines
468 B
Python
import unittest
|
|
from unittests import wtc
|
|
import wx
|
|
|
|
#---------------------------------------------------------------------------
|
|
|
|
class access_Tests(wtc.WidgetTestCase):
|
|
|
|
# TODO: Remove this test and add real ones.
|
|
@unittest.expectedFailure
|
|
def test_access1(self):
|
|
self.fail("Unit tests for access not implemented yet.")
|
|
|
|
#---------------------------------------------------------------------------
|
|
|
|
if __name__ == '__main__':
|
|
unittest.main()
|