mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-24 19:55:26 +03:00
https://github.com/magmax/python-inquirer A collection of common interactive command line user interfaces
27 lines
1,014 B
Diff
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):
|