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:
2626
2727
2828def test_send_keys (session : Session ) -> None :
29+ """Verify Pane.send_keys()."""
2930 pane = session .attached_window .attached_pane
3031 assert pane is not None
3132 pane .send_keys ("c-c" , literal = True )
@@ -38,6 +39,7 @@ def test_send_keys(session: Session) -> None:
3839
3940
4041def test_set_height (session : Session ) -> None :
42+ """Verify Pane.set_height()."""
4143 window = session .new_window (window_name = "test_set_height" )
4244 window .split_window ()
4345 pane1 = window .attached_pane
@@ -50,6 +52,7 @@ def test_set_height(session: Session) -> None:
5052
5153
5254def test_set_width (session : Session ) -> None :
55+ """Verify Pane.set_width()."""
5356 window = session .new_window (window_name = "test_set_width" )
5457 window .split_window ()
5558
@@ -66,6 +69,7 @@ def test_set_width(session: Session) -> None:
6669
6770
6871def test_capture_pane (session : Session ) -> None :
72+ """Verify Pane.capture_pane()."""
6973 env = shutil .which ("env" )
7074 assert env is not None , "Cannot find usable `env` in PATH."
7175
You can’t perform that action at this time.
0 commit comments