1
0
Fork 0
mirror of https://gitlab.alpinelinux.org/alpine/aports.git synced 2025-07-24 19:55:26 +03:00
aports/testing/py3-inquirer/disable-failing-tests.patch
Rasmus Thomsen 7890560b36 testing/py3-inquirer: new aport
https://github.com/magmax/python-inquirer
A collection of common interactive command line user interfaces
2020-03-12 18:14:36 +01:00

27 lines
1,014 B
Diff

https://github.com/magmax/python-inquirer/issues/84
diff --git a/tests/acceptance/test_list.py b/tests/acceptance/test_list.py
index 82886e8..f6fa7e4 100644
--- a/tests/acceptance/test_list.py
+++ b/tests/acceptance/test_list.py
@@ -39,21 +39,6 @@ class ListCarouselTest(unittest.TestCase):
import sys
self.sut.logfile = sys.stdout
- def test_out_of_bounds_up(self):
- self.sut.send(key.UP)
- self.sut.expect('Standard.*', timeout=1)
- self.sut.send(key.ENTER)
- self.sut.expect("{'size': 'Standard'}.*", timeout=1)
-
- def test_out_of_bounds_down(self):
- for i in range(3):
- self.sut.send(key.DOWN)
- # Not looking at what we expect along the way,
- # let the last "expect" check that we got the right result
- self.sut.expect('>.*', timeout=1)
- self.sut.send(key.ENTER)
- self.sut.expect("{'size': 'Jumbo'}.*", timeout=1)
-
class ListTaggedTest(unittest.TestCase):
def setUp(self):