blob: e8f42b7d951969e49031772c07707194ca7c52a9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
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):
|