1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
|
From 4254f73f2d48caa4f11382ae1c5898a2102a813b Mon Sep 17 00:00:00 2001
From: Scott Talbert <swt@techie.net>
Date: Mon, 7 Jan 2019 22:37:52 -0500
Subject: [PATCH] Xfail unimplemented access test instead of failing it
---
unittests/test_access.py | 1 +
1 file changed, 1 insertion(+)
diff --git a/unittests/test_access.py b/unittests/test_access.py
index 716bacce..4acc6b6c 100644
--- a/unittests/test_access.py
+++ b/unittests/test_access.py
@@ -7,6 +7,7 @@ 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.")
--
2.20.1
|