File tree Expand file tree Collapse file tree 1 file changed +4
-0
lines changed Expand file tree Collapse file tree 1 file changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -26,6 +26,7 @@ def test_resize_pane(session: Session) -> None:
26
26
27
27
28
28
def test_send_keys (session : Session ) -> None :
29
+ """Verify Pane.send_keys()."""
29
30
pane = session .attached_window .attached_pane
30
31
assert pane is not None
31
32
pane .send_keys ("c-c" , literal = True )
@@ -38,6 +39,7 @@ def test_send_keys(session: Session) -> None:
38
39
39
40
40
41
def test_set_height (session : Session ) -> None :
42
+ """Verify Pane.set_height()."""
41
43
window = session .new_window (window_name = "test_set_height" )
42
44
window .split_window ()
43
45
pane1 = window .attached_pane
@@ -50,6 +52,7 @@ def test_set_height(session: Session) -> None:
50
52
51
53
52
54
def test_set_width (session : Session ) -> None :
55
+ """Verify Pane.set_width()."""
53
56
window = session .new_window (window_name = "test_set_width" )
54
57
window .split_window ()
55
58
@@ -66,6 +69,7 @@ def test_set_width(session: Session) -> None:
66
69
67
70
68
71
def test_capture_pane (session : Session ) -> None :
72
+ """Verify Pane.capture_pane()."""
69
73
env = shutil .which ("env" )
70
74
assert env is not None , "Cannot find usable `env` in PATH."
71
75
You can’t perform that action at this time.
0 commit comments